lemurs: 0.3.1 -> 0.3.2

For changelog see: https://github.com/coastalwhite/lemurs/releases/tag/v0.3.2

+10 -3
+10 -3
pkgs/applications/display-managers/lemurs/default.nix
··· 3 lib, 4 linux-pam, 5 rustPlatform, 6 }: 7 rustPlatform.buildRustPackage rec { 8 pname = "lemurs"; 9 - version = "0.3.1"; 10 11 src = fetchFromGitHub { 12 owner = "coastalwhite"; 13 repo = "lemurs"; 14 rev = "v${version}"; 15 - hash = "sha256-6mNSLEWafw8yDGnemOhEiK8FTrBC+6+PuhlbOXTGmN0="; 16 }; 17 18 - cargoHash = "sha256-nfUBC1HSs7PcIbD7MViJFkfFAPda83XbAupNeShfwOs="; 19 20 # Fixes a lock issue 21 preConfigure = "cargo update --offline"; ··· 24 linux-pam 25 ]; 26 27 meta = with lib; { 28 description = "A customizable TUI display/login manager written in Rust"; 29 homepage = "https://github.com/coastalwhite/lemurs"; 30 license = with licenses; [asl20 mit]; 31 maintainers = with maintainers; [jeremiahs]; 32 }; 33 }
··· 3 lib, 4 linux-pam, 5 rustPlatform, 6 + testers, 7 + lemurs, 8 }: 9 rustPlatform.buildRustPackage rec { 10 pname = "lemurs"; 11 + version = "0.3.2"; 12 13 src = fetchFromGitHub { 14 owner = "coastalwhite"; 15 repo = "lemurs"; 16 rev = "v${version}"; 17 + hash = "sha256-YDopY+wdWlVL2X+/wc1tLSSqFclAkt++JXMK3VodD4s="; 18 }; 19 20 + cargoHash = "sha256-uuHPJe+1VsnLRGbHtgTMrib6Tk359cwTDVfvtHnDToo="; 21 22 # Fixes a lock issue 23 preConfigure = "cargo update --offline"; ··· 26 linux-pam 27 ]; 28 29 + passthru.tests.version = testers.testVersion { 30 + package = lemurs; 31 + }; 32 + 33 meta = with lib; { 34 description = "A customizable TUI display/login manager written in Rust"; 35 homepage = "https://github.com/coastalwhite/lemurs"; 36 license = with licenses; [asl20 mit]; 37 maintainers = with maintainers; [jeremiahs]; 38 + mainProgram = "lemurs"; 39 }; 40 }