about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/X11/xnotify/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/X11/xnotify/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/X11/xnotify/default.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/nixpkgs/pkgs/tools/X11/xnotify/default.nix b/nixpkgs/pkgs/tools/X11/xnotify/default.nix
index 8f93e1b1c9f9..e5c6c31e7dbb 100644
--- a/nixpkgs/pkgs/tools/X11/xnotify/default.nix
+++ b/nixpkgs/pkgs/tools/X11/xnotify/default.nix
@@ -8,18 +8,17 @@
 , libXft
 , libXinerama
 , conf ? null
-, nix-update-script
 }:
 
 stdenv.mkDerivation rec {
   pname = "xnotify";
-  version = "unstable-2022-02-18";
+  version = "0.9.3";
 
   src = fetchFromGitHub {
     owner = "phillbush";
     repo = "xnotify";
-    rev = "58c7d5763c3fb1c32a76560c85d20a25f59d4687";
-    sha256 = "sha256-BSZesuBGAWYp3IMiiZi6CAyZEiz3sBJLQe6/JnxviLs=";
+    rev = "v${version}";
+    hash = "sha256-RfnmiAEFTPqQZursyVPDIZ6J3KBouvaaxyhTc1liqBc=";
   };
 
   buildInputs = [
@@ -40,10 +39,6 @@ stdenv.mkDerivation rec {
 
   makeFlags = [ "PREFIX=$(out)" ];
 
-  passthru.updateScript = nix-update-script {
-    attrPath = pname;
-  };
-
   meta = with lib; {
     description = "A tool to read notifications from stdin and pop them up on the screen";
     longDescription = ''