Merge pull request #316702 from GaetanLepage/tuigreet

greetd.tuigreet: 0.9.0 -> 0.9.1

authored by Peder Bergebakken Sundt and committed by GitHub 8688137b 17228842

+10 -9
+10 -9
pkgs/applications/display-managers/greetd/tuigreet.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "tuigreet"; 8 - version = "0.9.0"; 9 10 src = fetchFromGitHub { 11 owner = "apognu"; 12 - repo = pname; 13 - rev = version; 14 - sha256 = "sha256-o1NPwZ2gvFxq988RhLz/6ucL4qb2dGtMdhNvAbQzIvg="; 15 }; 16 17 - cargoSha256 = "sha256-dfzNRs3NOtHoWBq6tx3DjL2knNwsdxBmjqJbPzQJifQ="; 18 19 - meta = with lib; { 20 description = "Graphical console greeter for greetd"; 21 homepage = "https://github.com/apognu/tuigreet"; 22 - license = licenses.gpl3Plus; 23 - maintainers = with maintainers; [ luc65r ivar ]; 24 - platforms = platforms.linux; 25 mainProgram = "tuigreet"; 26 }; 27 }
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "tuigreet"; 8 + version = "0.9.1"; 9 10 src = fetchFromGitHub { 11 owner = "apognu"; 12 + repo = "tuigreet"; 13 + rev = "refs/tags/${version}"; 14 + sha256 = "sha256-e0YtpakEaaWdgu+bMr2VFoUc6+SUMFk4hYtSyk5aApY="; 15 }; 16 17 + cargoSha256 = "sha256-RkJjAmZ++4nc/lLh8g0LxGq2DjZGxQEjFOl8Yzx116A="; 18 19 + meta = { 20 description = "Graphical console greeter for greetd"; 21 homepage = "https://github.com/apognu/tuigreet"; 22 + changelog = "https://github.com/apognu/tuigreet/releases/tag/${version}"; 23 + license = lib.licenses.gpl3Plus; 24 + maintainers = with lib.maintainers; [ luc65r ivar ]; 25 + platforms = lib.platforms.linux; 26 mainProgram = "tuigreet"; 27 }; 28 }