2022-12-04 13:09:51 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2016-07-14 16:22:54 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-19 09:46:26 +00:00
|
|
|
pname = "fnotifystat";
|
2022-12-09 13:48:55 +00:00
|
|
|
version = "0.02.09";
|
2022-12-04 13:09:51 +00:00
|
|
|
|
2022-02-01 01:35:25 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ColinIanKing";
|
|
|
|
repo = pname;
|
|
|
|
rev = "V${version}";
|
2022-12-09 13:48:55 +00:00
|
|
|
hash = "sha256-YyIk7x0B3JB/iMF9OP767fVEBgcV0duV7xIiHZxpL0w=";
|
2016-07-14 16:22:54 +00:00
|
|
|
};
|
2022-02-01 01:35:25 +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";
|
2022-02-01 01:35:25 +00:00
|
|
|
homepage = "https://github.com/ColinIanKing/fnotifystat";
|
2022-02-04 03:57:55 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-07-14 16:22:54 +00:00
|
|
|
platforms = platforms.linux;
|
2022-02-01 01:35:25 +00:00
|
|
|
maintainers = with maintainers; [ womfoo dtzWill ];
|
2016-07-14 16:22:54 +00:00
|
|
|
};
|
|
|
|
}
|