2495e3f88b
GitOrigin-RevId: 78cd22c1b8604de423546cd49bfe264b786eca13
28 lines
688 B
Nix
28 lines
688 B
Nix
{ lib, stdenv, autoreconfHook, fetchFromGitHub, nix-update-script }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "inotify-tools";
|
|
version = "3.21.9.6";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "inotify-tools";
|
|
owner = "inotify-tools";
|
|
rev = version;
|
|
sha256 = "sha256-oKcVmF39N43g8O1S+xwUhVJryFcW+ZUteyoe3fUkRH8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
attrPath = pname;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/inotify-tools/inotify-tools/wiki";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ marcweber pSub shamilton ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|