2018-01-09 04:14:46 +00:00
|
|
|
{ stdenv, autoreconfHook, fetchFromGitHub }:
|
2010-07-28 11:55:54 +00:00
|
|
|
|
2014-08-17 21:12:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "inotify-tools-${version}";
|
2018-01-09 04:14:46 +00:00
|
|
|
version = "3.20.1";
|
2010-01-15 19:35:02 +00:00
|
|
|
|
2018-01-09 04:14:46 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "inotify-tools";
|
|
|
|
owner = "rvoicilas";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "14dci1i4mhsd5sa33k8h3ayphk19kizynh5ql9ryibdpmcanfiyq";
|
2010-01-15 19:35:02 +00:00
|
|
|
};
|
|
|
|
|
2018-01-09 04:14:46 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2014-08-17 21:12:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/rvoicilas/inotify-tools/wiki;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ marcweber pSub ];
|
|
|
|
platforms = platforms.linux;
|
2010-01-15 19:35:02 +00:00
|
|
|
};
|
|
|
|
}
|