fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / fn / fnotifystat / package.nix
blob72c1edde96c9ea59fecdae02959fde831da13dfe
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "fnotifystat";
9   version = "0.03.00";
11   src = fetchFromGitHub {
12     owner = "ColinIanKing";
13     repo = pname;
14     rev = "V${version}";
15     hash = "sha256-UGww0/m+JMftQyAguc8UpPrtIphjCq9TINabFaAKN0A=";
16   };
18   installFlags = [
19     "BINDIR=${placeholder "out"}/bin"
20     "MANDIR=${placeholder "out"}/share/man/man8"
21     "BASHDIR=${placeholder "out"}/share/bash-completion/completions"
22   ];
24   meta = with lib; {
25     description = "File activity monitoring tool";
26     mainProgram = "fnotifystat";
27     homepage = "https://github.com/ColinIanKing/fnotifystat";
28     license = licenses.gpl2Plus;
29     platforms = platforms.linux;
30     maintainers = with maintainers; [ womfoo ];
31   };