fnotifystat: init at 0.01.14

+24
+22
pkgs/os-specific/linux/fnotifystat/default.nix
··· 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 10757 10758 10758 firejail = callPackage ../os-specific/linux/firejail {}; 10759 10759 10760 + fnotifystat = callPackage ../os-specific/linux/fnotifystat { }; 10761 + 10760 10762 freefall = callPackage ../os-specific/linux/freefall { 10761 10763 inherit (linuxPackages) kernel; 10762 10764 };