about summary refs log tree commit diff
path: root/pkgs/applications/display-managers/greetd/tuigreet.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/display-managers/greetd/tuigreet.nix')
-rw-r--r--pkgs/applications/display-managers/greetd/tuigreet.nix19
1 files changed, 10 insertions, 9 deletions
diff --git a/pkgs/applications/display-managers/greetd/tuigreet.nix b/pkgs/applications/display-managers/greetd/tuigreet.nix
index 2a6a4c6ef782e..40b52ecf7592b 100644
--- a/pkgs/applications/display-managers/greetd/tuigreet.nix
+++ b/pkgs/applications/display-managers/greetd/tuigreet.nix
@@ -5,23 +5,24 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "tuigreet";
-  version = "0.8.0";
+  version = "0.9.1";
 
   src = fetchFromGitHub {
     owner = "apognu";
-    repo = pname;
-    rev = version;
-    sha256 = "sha256-8/2I6bk29/GqZ1ACuN9RgBiGAy7yt0iw2fagHfu4/BI=";
+    repo = "tuigreet";
+    rev = "refs/tags/${version}";
+    sha256 = "sha256-e0YtpakEaaWdgu+bMr2VFoUc6+SUMFk4hYtSyk5aApY=";
   };
 
-  cargoSha256 = "sha256-fOs9a0/1c8Kh4JA5up3XSQ+km/FwSYzl0w4UDL4yU4M=";
+  cargoSha256 = "sha256-RkJjAmZ++4nc/lLh8g0LxGq2DjZGxQEjFOl8Yzx116A=";
 
-  meta = with lib; {
+  meta = {
     description = "Graphical console greeter for greetd";
     homepage = "https://github.com/apognu/tuigreet";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ luc65r ivar ];
-    platforms = platforms.linux;
+    changelog = "https://github.com/apognu/tuigreet/releases/tag/${version}";
+    license = lib.licenses.gpl3Plus;
+    maintainers = with lib.maintainers; [ luc65r ivar ];
+    platforms = lib.platforms.linux;
     mainProgram = "tuigreet";
   };
 }