nix update
Some checks failed
CI / checks (push) Failing after 58s

This commit is contained in:
Robin Appelman 2026-03-26 16:54:24 +01:00
commit f6bab626ec
6 changed files with 25 additions and 24 deletions

34
flake.lock generated
View file

@ -2,11 +2,11 @@
"nodes": {
"crane": {
"locked": {
"lastModified": 1739936662,
"narHash": "sha256-x4syUjNUuRblR07nDPeLDP7DpphaBVbUaSoeZkFbGSk=",
"lastModified": 1774313767,
"narHash": "sha256-hy0XTQND6avzGEUFrJtYBBpFa/POiiaGBr2vpU6Y9tY=",
"owner": "ipetkov",
"repo": "crane",
"rev": "19de14aaeb869287647d9461cbd389187d8ecdb7",
"rev": "3d9df76e29656c679c744968b17fbaf28f0e923d",
"type": "github"
},
"original": {
@ -22,11 +22,11 @@
]
},
"locked": {
"lastModified": 1742215471,
"narHash": "sha256-I/7CY1gd5R4b3rBlhcJyjCYcP+v/164g83uOT9HTfj0=",
"lastModified": 1774271954,
"narHash": "sha256-FbvMOykx7f7uEPdRVzUSABnLjqCdEp22wa0nDkuEd3s=",
"owner": "nix-community",
"repo": "flakelight",
"rev": "e40a1a8c6d18c761659ed88d7536310a7e604f7f",
"rev": "c90878b309508083094f465d6aa11b3963f48b9f",
"type": "github"
},
"original": {
@ -44,11 +44,11 @@
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1747928985,
"narHash": "sha256-OGJvoEbcclL566m9PCq+SdOQ9vJzLfVCOkww9L/uZT8=",
"lastModified": 1774538603,
"narHash": "sha256-IG0fOFNUjselW61zc/jOZU3abmt7FjcRdES9SXeHun4=",
"ref": "refs/heads/main",
"rev": "742b8596357b53bf437d504a87455f46edba8be2",
"revCount": 46,
"rev": "0ef9ce3384617243e1b9e94a7057f879f621f014",
"revCount": 69,
"type": "git",
"url": "https://codeberg.org/icewind/mill-scale.git"
},
@ -59,16 +59,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1742136038,
"narHash": "sha256-DDe16FJk18sadknQKKG/9FbwEro7A57tg9vB5kxZ8kY=",
"lastModified": 1774388614,
"narHash": "sha256-tFwzTI0DdDzovdE9+Ras6CUss0yn8P9XV4Ja6RjA+nU=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "a1185f4064c18a5db37c5c84e5638c78b46e3341",
"rev": "1073dad219cb244572b74da2b20c7fe39cb3fa9e",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-24.11",
"ref": "nixos-25.11",
"type": "indirect"
}
},
@ -88,11 +88,11 @@
]
},
"locked": {
"lastModified": 1740277845,
"narHash": "sha256-NNU0CdiaSbAeZ8tpDG4aFi9qtcdlItRvk8Xns9oBrVU=",
"lastModified": 1774535687,
"narHash": "sha256-dpKS/8+uB0EoI4mCrpio+xs8Xxry6ZhLLwV8VIbbfrs=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "f933070c29f9c1c5457447a51903f27f76ebb519",
"rev": "75900435aa883f84b038316864b3f60956681523",
"type": "github"
},
"original": {

View file

@ -1,6 +1,6 @@
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-24.11";
nixpkgs.url = "nixpkgs/nixos-25.11";
flakelight = {
url = "github:nix-community/flakelight";
inputs.nixpkgs.follows = "nixpkgs";

View file

@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2024-11-18"
components = [ "rustfmt", "rust-std", "clippy", "rust-src" ]
targets = [ "riscv32imc-unknown-none-elf" ]
channel = "nightly-2026-03-18"
components = ["rustfmt", "rust-std", "clippy", "rust-src"]
targets = ["riscv32imc-unknown-none-elf"]

View file

@ -61,6 +61,7 @@ impl Iden for CleanMapName {
#[derive(Iden)]
#[iden = "ARRAY"]
#[allow(dead_code)]
pub struct ArrayFunc;
#[derive(Iden)]

View file

@ -142,11 +142,11 @@ impl Render for UploadsLink<'_> {
}
impl SteamId {
pub fn uploads_link(&self) -> UploadsLink {
pub fn uploads_link<'a>(&'a self) -> UploadsLink<'a> {
UploadsLink(self)
}
pub fn profile_link(&self) -> ProfileLink {
pub fn profile_link<'a>(&'a self) -> ProfileLink<'a> {
ProfileLink(self)
}
}

View file

@ -10,7 +10,7 @@ pub struct AboutPage {
}
impl AboutPage {
pub fn plugin_section(&self) -> PluginSection {
pub fn plugin_section<'a>(&'a self) -> PluginSection<'a> {
PluginSection {
key: self.key.as_ref(),
}