about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/inotify-tools
diff options
context:
space:
mode:
authorSCOTT-HAMILTON <sgn.hamilton+github@protonmail.com>2021-04-14 21:01:56 +0200
committerSCOTT-HAMILTON <sgn.hamilton+github@protonmail.com>2021-04-18 16:17:09 +0200
commit6649c6d75c8a246861608d8999429279c766e7d1 (patch)
tree8f6fc2b6d44e2ba360eb41604a4a4e413603df7f /pkgs/development/tools/misc/inotify-tools
parentf8a32f8df9d9d3bd659f195dd2c8013c5dd1ffa6 (diff)
inotify-tools: 3.20.2.2 -> 3.20.11.0
Diffstat (limited to 'pkgs/development/tools/misc/inotify-tools')
-rw-r--r--pkgs/development/tools/misc/inotify-tools/default.nix17
1 files changed, 5 insertions, 12 deletions
diff --git a/pkgs/development/tools/misc/inotify-tools/default.nix b/pkgs/development/tools/misc/inotify-tools/default.nix
index e085d3dd259e5..48e2139b74dcc 100644
--- a/pkgs/development/tools/misc/inotify-tools/default.nix
+++ b/pkgs/development/tools/misc/inotify-tools/default.nix
@@ -1,29 +1,22 @@
-{ lib, stdenv, autoreconfHook, fetchFromGitHub, fetchpatch }:
+{ lib, stdenv, autoreconfHook, fetchFromGitHub }:
 
 stdenv.mkDerivation rec {
   pname = "inotify-tools";
-  version = "3.20.2.2";
+  version = "3.20.11.0";
 
   src = fetchFromGitHub {
     repo = "inotify-tools";
     owner = "rvoicilas";
     rev = version;
-    sha256 = "1r12bglkb0bkqff6kgxjm81hk6z20nrxq3m7iv15d4nrqf9pm7s0";
+    sha256 = "1m8avqccrhm38krlhp88a7v949f3hrzx060bbrr5dp5qw2nmw9j2";
   };
 
-  patches = [
-    (fetchpatch {
-      url = "https://github.com/inotify-tools/inotify-tools/commit/7ddf45158af0c1e93b02181a45c5b65a0e5bed25.patch";
-      sha256 = "08imqancx8l0bg9q7xaiql1xlalmbfnpjfjshp495sjais0r6gy7";
-    })
-  ];
-
   nativeBuildInputs = [ autoreconfHook ];
 
   meta = with lib; {
     homepage = "https://github.com/rvoicilas/inotify-tools/wiki";
-    license = licenses.gpl2;
-    maintainers = with maintainers; [ marcweber pSub ];
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ marcweber pSub shamilton ];
     platforms = platforms.linux;
   };
 }