summary refs log tree commit diff
path: root/pkgs/tools/X11/xnotify
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2023-03-01 22:50:39 +0300
committerAzat Bahawi <azat@bahawi.net>2023-03-01 22:50:39 +0300
commitde14574dced07680afef14ea652b9053bc4036a1 (patch)
tree8f2ababd09fa205c7cacb42d23aaa738382ce0d9 /pkgs/tools/X11/xnotify
parenta018e0c02403682c9eda22cac37b595c5510bfd8 (diff)
downloadnixpkgs-de14574dced07680afef14ea652b9053bc4036a1.tar
nixpkgs-de14574dced07680afef14ea652b9053bc4036a1.tar.gz
nixpkgs-de14574dced07680afef14ea652b9053bc4036a1.tar.bz2
nixpkgs-de14574dced07680afef14ea652b9053bc4036a1.tar.lz
nixpkgs-de14574dced07680afef14ea652b9053bc4036a1.tar.xz
nixpkgs-de14574dced07680afef14ea652b9053bc4036a1.tar.zst
nixpkgs-de14574dced07680afef14ea652b9053bc4036a1.zip
xnotify: fix rev
Diffstat (limited to 'pkgs/tools/X11/xnotify')
-rw-r--r--pkgs/tools/X11/xnotify/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/tools/X11/xnotify/default.nix b/pkgs/tools/X11/xnotify/default.nix
index dd153adfa73..e5c6c31e7db 100644
--- a/pkgs/tools/X11/xnotify/default.nix
+++ b/pkgs/tools/X11/xnotify/default.nix
@@ -8,7 +8,6 @@
 , libXft
 , libXinerama
 , conf ? null
-, nix-update-script
 }:
 
 stdenv.mkDerivation rec {
@@ -18,8 +17,8 @@ stdenv.mkDerivation rec {
   src = fetchFromGitHub {
     owner = "phillbush";
     repo = "xnotify";
-    rev = "58c7d5763c3fb1c32a76560c85d20a25f59d4687";
-    sha256 = "sha256-BSZesuBGAWYp3IMiiZi6CAyZEiz3sBJLQe6/JnxviLs=";
+    rev = "v${version}";
+    hash = "sha256-RfnmiAEFTPqQZursyVPDIZ6J3KBouvaaxyhTc1liqBc=";
   };
 
   buildInputs = [
@@ -40,8 +39,6 @@ stdenv.mkDerivation rec {
 
   makeFlags = [ "PREFIX=$(out)" ];
 
-  passthru.updateScript = nix-update-script { };
-
   meta = with lib; {
     description = "A tool to read notifications from stdin and pop them up on the screen";
     longDescription = ''