evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / in / inotify-tools / package.nix
blobe8536ea784f36b453dca07f8f6aac096b3b47d46
1 { lib, stdenv, autoreconfHook, fetchFromGitHub, nix-update-script, fanotifySupport ? true }:
3 stdenv.mkDerivation (finalAttrs: {
4   pname = "inotify-tools";
5   version = "4.23.9.0";
7   src = fetchFromGitHub {
8     repo = "inotify-tools";
9     owner = "inotify-tools";
10     rev = finalAttrs.version;
11     hash = "sha256-6kM2JzxRcwUjUmbUWGnQ+gAvZcn7C32/enRwiYiuQGU=";
12   };
14   configureFlags = [
15     (lib.enableFeature fanotifySupport "fanotify")
16   ];
18   nativeBuildInputs = [ autoreconfHook ];
20   passthru = {
21     updateScript = nix-update-script { };
22   };
24   meta = with lib; {
25     homepage = "https://github.com/inotify-tools/inotify-tools/wiki";
26     license = licenses.gpl2Plus;
27     maintainers = with maintainers; [ marcweber pSub shamilton ];
28     platforms = platforms.linux;
29   };