blob: d720ff1e905caa0792555702c42f27d34896be68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "fnotifystat";
version = "0.03.00";
src = fetchFromGitHub {
owner = "ColinIanKing";
repo = "fnotifystat";
rev = "V${finalAttrs.version}";
hash = "sha256-UGww0/m+JMftQyAguc8UpPrtIphjCq9TINabFaAKN0A=";
};
installFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man/man8"
"BASHDIR=${placeholder "out"}/share/bash-completion/completions"
];
meta = {
description = "File activity monitoring tool";
mainProgram = "fnotifystat";
homepage = "https://github.com/ColinIanKing/fnotifystat";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ womfoo ];
};
})
|