nixpkgs/pkgs/os-specific/linux/fnotifystat/default.nix
Will Dietz 58eeb07420 fnotifystat: fix src/homepage, moved to github
Also touchup the build to match pattern used for other ColinIanKing utilities
2022-01-31 19:35:25 -06:00

27 lines
720 B
Nix

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