ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / in / inotify-info / package.nix
blob21de48577df68e7cd44780cc50d2b33bcb19132f
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
6 stdenv.mkDerivation (finalAttrs: {
7   pname = "inotify-info";
8   version = "0.0.3";
10   src = fetchFromGitHub {
11     owner = "mikesart";
12     repo = "inotify-info";
13     rev = "refs/tags/v${finalAttrs.version}";
14     hash = "sha256-mxZpJMmSCgm5uV5/wknVb1PdxRIF/b2k+6rdOh4b8zA=";
15   };
17   buildFlags = ["INOTIFYINFO_VERSION=v${finalAttrs.version}"];
19   installFlags = ["PREFIX=$$out"];
21   meta = with lib; {
22     description = "Easily track down the number of inotify watches, instances, and which files are being watched";
23     homepage = "https://github.com/mikesart/inotify-info";
24     license = licenses.mit;
25     mainProgram = "inotify-info";
26     maintainers = with maintainers; [ motiejus ];
27     platforms = platforms.linux;
28   };