3
0
Fork 0
forked from mirrors/nixpkgs

inotify-tools: 3.14 -> 3.20.1

Closes #33609
This commit is contained in:
adisbladis 2018-01-09 12:14:46 +08:00
parent b195d8ab07
commit 9638055534
No known key found for this signature in database
GPG key ID: ED58F95069B004F5

View file

@ -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;