nixpkgs/pkgs/os-specific/linux/fnotifystat/default.nix

27 lines
720 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub }:
2016-07-14 16:22:54 +00:00
stdenv.mkDerivation rec {
pname = "fnotifystat";
2020-10-31 23:18:01 +00:00
version = "0.02.07";
src = fetchFromGitHub {
owner = "ColinIanKing";
repo = pname;
rev = "V${version}";
sha256 = "sha256-5oYM1t+vmWywYRbgXI2RGQlOuNJluj2gwCMf3pTpDC0=";
2016-07-14 16:22:54 +00:00
};
installFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man/man8"
"BASHDIR=${placeholder "out"}/share/bash-completion/completions"
];
2016-07-14 16:22:54 +00:00
meta = with lib; {
description = "File activity monitoring tool";
homepage = "https://github.com/ColinIanKing/fnotifystat";
2016-07-14 16:22:54 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ womfoo dtzWill ];
2016-07-14 16:22:54 +00:00
};
}