2021-04-14 12:01:56 -07:00
|
|
|
{ lib, 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";
|
2021-04-14 12:01:56 -07:00
|
|
|
version = "3.20.11.0";
|
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;
|
2021-04-14 12:01:56 -07:00
|
|
|
sha256 = "1m8avqccrhm38krlhp88a7v949f3hrzx060bbrr5dp5qw2nmw9j2";
|
2010-01-15 11:35:02 -08:00
|
|
|
};
|
|
|
|
|
2018-01-08 20:14:46 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/rvoicilas/inotify-tools/wiki";
|
2021-04-14 12:01:56 -07:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ marcweber pSub shamilton ];
|
2014-08-17 14:12:37 -07:00
|
|
|
platforms = platforms.linux;
|
2010-01-15 11:35:02 -08:00
|
|
|
};
|
|
|
|
}
|