tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fnotifystat: init at 0.01.14
Kranium Gikos Mendoza
9 years ago
b795186f
f76a8fbb
+24
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
linux
fnotifystat
default.nix
top-level
all-packages.nix
+22
pkgs/os-specific/linux/fnotifystat/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, lib, fetchurl }:
2
+
3
+
stdenv.mkDerivation rec {
4
+
name = "fnotifystat-${version}";
5
+
version = "0.01.14";
6
+
src = fetchurl {
7
+
url = "http://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz";
8
+
sha256 = "1cc3w94v8b4nfpkgr33gfzxpwaf43brqyc0fla9p70gk3hxjqzi5";
9
+
};
10
+
installFlags = [ "DESTDIR=$(out)" ];
11
+
postInstall = ''
12
+
mv $out/usr/* $out
13
+
rm -r $out/usr
14
+
'';
15
+
meta = with lib; {
16
+
description = "File activity monitoring tool";
17
+
homepage = http://kernel.ubuntu.com/~cking/fnotifystat/;
18
+
license = licenses.gpl2;
19
+
platforms = platforms.linux;
20
+
maintainers = with maintainers; [ womfoo ];
21
+
};
22
+
}
+2
pkgs/top-level/all-packages.nix
···
10757
10758
firejail = callPackage ../os-specific/linux/firejail {};
10759
0
0
10760
freefall = callPackage ../os-specific/linux/freefall {
10761
inherit (linuxPackages) kernel;
10762
};
···
10757
10758
firejail = callPackage ../os-specific/linux/firejail {};
10759
10760
+
fnotifystat = callPackage ../os-specific/linux/fnotifystat { };
10761
+
10762
freefall = callPackage ../os-specific/linux/freefall {
10763
inherit (linuxPackages) kernel;
10764
};