Loading pkgs/applications/display-managers/lemurs/0001-fix-static-lifetime-string.patch 0 → 100644 +22 −0 Original line number Diff line number Diff line tree 18207ad257a4c0a9ffc4fd250360a91d0b5240cb parent 37963b8ff6945ae8bdbabee658e5e36d0f67b84a author Noa Aarts <noa@voorwaarts.nl> Tue Nov 5 13:49:49 2024 +0100 committer Noa Aarts <noa@voorwaarts.nl> Tue Nov 5 13:49:49 2024 +0100 fix static lifetime for string This fixes a compiler error without changing functionality diff --git a/src/config.rs b/src/config.rs index f4bca31..a4fc6bf 100644 --- a/src/config.rs +++ b/src/config.rs @@ -645,7 +645,7 @@ struct Variable<'a> { } impl<'a> Variable<'a> { - const START_SYMBOL: &str = "$"; + const START_SYMBOL: &'static str = "$"; fn span(&self) -> std::ops::Range<usize> { self.start..self.start + Self::START_SYMBOL.len() + self.ident.len() pkgs/applications/display-managers/lemurs/default.nix +10 −2 Original line number Diff line number Diff line Loading @@ -17,6 +17,11 @@ rustPlatform.buildRustPackage rec { hash = "sha256-YDopY+wdWlVL2X+/wc1tLSSqFclAkt++JXMK3VodD4s="; }; patches = [ # part of https://github.com/coastalwhite/lemurs/commit/09003a830400250ec7745939399fc942c505e6c6, but including the rest of the commit may be breaking ./0001-fix-static-lifetime-string.patch ]; cargoHash = "sha256-uuHPJe+1VsnLRGbHtgTMrib6Tk359cwTDVfvtHnDToo="; buildInputs = [ Loading @@ -30,7 +35,10 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Customizable TUI display/login manager written in Rust"; homepage = "https://github.com/coastalwhite/lemurs"; license = with licenses; [asl20 mit]; license = with licenses; [ asl20 mit ]; maintainers = with maintainers; [ jeremiahs ]; mainProgram = "lemurs"; }; Loading Loading
pkgs/applications/display-managers/lemurs/0001-fix-static-lifetime-string.patch 0 → 100644 +22 −0 Original line number Diff line number Diff line tree 18207ad257a4c0a9ffc4fd250360a91d0b5240cb parent 37963b8ff6945ae8bdbabee658e5e36d0f67b84a author Noa Aarts <noa@voorwaarts.nl> Tue Nov 5 13:49:49 2024 +0100 committer Noa Aarts <noa@voorwaarts.nl> Tue Nov 5 13:49:49 2024 +0100 fix static lifetime for string This fixes a compiler error without changing functionality diff --git a/src/config.rs b/src/config.rs index f4bca31..a4fc6bf 100644 --- a/src/config.rs +++ b/src/config.rs @@ -645,7 +645,7 @@ struct Variable<'a> { } impl<'a> Variable<'a> { - const START_SYMBOL: &str = "$"; + const START_SYMBOL: &'static str = "$"; fn span(&self) -> std::ops::Range<usize> { self.start..self.start + Self::START_SYMBOL.len() + self.ident.len()
pkgs/applications/display-managers/lemurs/default.nix +10 −2 Original line number Diff line number Diff line Loading @@ -17,6 +17,11 @@ rustPlatform.buildRustPackage rec { hash = "sha256-YDopY+wdWlVL2X+/wc1tLSSqFclAkt++JXMK3VodD4s="; }; patches = [ # part of https://github.com/coastalwhite/lemurs/commit/09003a830400250ec7745939399fc942c505e6c6, but including the rest of the commit may be breaking ./0001-fix-static-lifetime-string.patch ]; cargoHash = "sha256-uuHPJe+1VsnLRGbHtgTMrib6Tk359cwTDVfvtHnDToo="; buildInputs = [ Loading @@ -30,7 +35,10 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Customizable TUI display/login manager written in Rust"; homepage = "https://github.com/coastalwhite/lemurs"; license = with licenses; [asl20 mit]; license = with licenses; [ asl20 mit ]; maintainers = with maintainers; [ jeremiahs ]; mainProgram = "lemurs"; }; Loading