2018-01-08 20:14:46 -08:00
|
|
|
{ stdenv, autoreconfHook, fetchFromGitHub }:
|
2010-07-28 04:55:54 -07:00
|
|
|
|
2014-08-17 14:12:37 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "inotify-tools";
|
2018-01-08 20:14:46 -08:00
|
|
|
version = "3.20.1";
|
2010-01-15 11:35:02 -08:00
|
|
|
|
2018-01-08 20:14:46 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "inotify-tools";
|
|
|
|
owner = "rvoicilas";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "14dci1i4mhsd5sa33k8h3ayphk19kizynh5ql9ryibdpmcanfiyq";
|
2010-01-15 11:35:02 -08:00
|
|
|
};
|
|
|
|
|
2018-01-08 20:14:46 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2014-08-17 14:12:37 -07: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 11:35:02 -08:00
|
|
|
};
|
|
|
|
}
|