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