2021-12-20 19:09:06 +00:00
|
|
|
{ lib, stdenv, autoreconfHook, fetchFromGitHub, nix-update-script }:
|
2010-07-28 11:55:54 +00:00
|
|
|
|
2014-08-17 21:12:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "inotify-tools";
|
2022-06-08 04:00:41 +00:00
|
|
|
version = "3.22.6.0";
|
2010-01-15 19:35:02 +00:00
|
|
|
|
2018-01-09 04:14:46 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "inotify-tools";
|
2021-12-20 19:09:06 +00:00
|
|
|
owner = "inotify-tools";
|
2018-01-09 04:14:46 +00:00
|
|
|
rev = version;
|
2022-06-08 04:00:41 +00:00
|
|
|
sha256 = "sha256-EYWVSgwoMjAlc/V5kv+2jfxEqWVW/lEoIxVd+ctEMsk=";
|
2010-01-15 19:35:02 +00:00
|
|
|
};
|
|
|
|
|
2018-01-09 04:14:46 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-12-20 19:09:06 +00:00
|
|
|
passthru = {
|
2022-12-25 22:11:14 +00:00
|
|
|
updateScript = nix-update-script { };
|
2021-12-20 19:09:06 +00:00
|
|
|
};
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2021-12-20 19:09:06 +00:00
|
|
|
homepage = "https://github.com/inotify-tools/inotify-tools/wiki";
|
2021-04-14 19:01:56 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ marcweber pSub shamilton ];
|
2014-08-17 21:12:37 +00:00
|
|
|
platforms = platforms.linux;
|
2010-01-15 19:35:02 +00:00
|
|
|
};
|
|
|
|
}
|