nixpkgs/pkgs/os-specific/linux/fnotifystat/default.nix
2020-10-31 23:18:01 +00:00

23 lines
651 B
Nix

{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
pname = "fnotifystat";
version = "0.02.07";
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz";
sha256 = "0ipfg2gymbgx7bqlx1sq5p2y89k5j18iqnb0wa27n5s3kh9sh8w0";
};
installFlags = [ "DESTDIR=$(out)" ];
postInstall = ''
mv $out/usr/* $out
rm -r $out/usr
'';
meta = with lib; {
description = "File activity monitoring tool";
homepage = "https://kernel.ubuntu.com/~cking/fnotifystat/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ womfoo ];
};
}