Skip to content

Commit

Permalink
inotify-tools: 3.14 -> 3.20.1
Browse files Browse the repository at this point in the history
Closes #33609
  • Loading branch information
adisbladis committed Jan 9, 2018
1 parent b195d8a commit 9638055
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions pkgs/development/tools/misc/inotify-tools/default.nix
@@ -1,14 +1,18 @@
{ stdenv, fetchurl }:
{ stdenv, autoreconfHook, fetchFromGitHub }:

stdenv.mkDerivation rec {
name = "inotify-tools-${version}";
version = "3.14";
version = "3.20.1";

src = fetchurl {
url = "http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${version}.tar.gz";
sha256 = "0by9frv1k59f76cx08sn06sk6lmdxsfb6zr0rshzhyrxi6lcqar2";
src = fetchFromGitHub {
repo = "inotify-tools";
owner = "rvoicilas";
rev = version;
sha256 = "14dci1i4mhsd5sa33k8h3ayphk19kizynh5ql9ryibdpmcanfiyq";
};

nativeBuildInputs = [ autoreconfHook ];

meta = with stdenv.lib; {
homepage = https://github.com/rvoicilas/inotify-tools/wiki;
license = licenses.gpl2;
Expand Down

0 comments on commit 9638055

Please sign in to comment.