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