about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/inotify-tools
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2021-12-20 19:09:06 +0000
committerSergei Trofimovich <slyich@gmail.com>2022-01-01 11:14:06 +0000
commit4f87b2de6843911523c765393125811a6a477ba3 (patch)
tree9e035bffcd451dcae6c50269fdb5eac56afd3d5a /pkgs/development/tools/misc/inotify-tools
parente5983a9833320d459db9bf6f59ef9f5fb4026377 (diff)
inotify-tools: 3.21.9.5 -> 3.21.9.6
While at it:
- added trivial updater
- switched github owner and homepage to inotify-tools
Diffstat (limited to 'pkgs/development/tools/misc/inotify-tools')
-rw-r--r--pkgs/development/tools/misc/inotify-tools/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/development/tools/misc/inotify-tools/default.nix b/pkgs/development/tools/misc/inotify-tools/default.nix
index 7b179e7de8d29..51c23eed8f3c1 100644
--- a/pkgs/development/tools/misc/inotify-tools/default.nix
+++ b/pkgs/development/tools/misc/inotify-tools/default.nix
@@ -1,20 +1,26 @@
-{ lib, stdenv, autoreconfHook, fetchFromGitHub }:
+{ lib, stdenv, autoreconfHook, fetchFromGitHub, nix-update-script }:
 
 stdenv.mkDerivation rec {
   pname = "inotify-tools";
-  version = "3.21.9.5";
+  version = "3.21.9.6";
 
   src = fetchFromGitHub {
     repo = "inotify-tools";
-    owner = "rvoicilas";
+    owner = "inotify-tools";
     rev = version;
-    sha256 = "sha256-2eMYCFqecpY/yvhwl5+kvQ+pkdWzhX6Xsb+rcJEK37c=";
+    sha256 = "sha256-oKcVmF39N43g8O1S+xwUhVJryFcW+ZUteyoe3fUkRH8=";
   };
 
   nativeBuildInputs = [ autoreconfHook ];
 
+  passthru = {
+    updateScript = nix-update-script {
+      attrPath = pname;
+    };
+  };
+
   meta = with lib; {
-    homepage = "https://github.com/rvoicilas/inotify-tools/wiki";
+    homepage = "https://github.com/inotify-tools/inotify-tools/wiki";
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ marcweber pSub shamilton ];
     platforms = platforms.linux;