2016-07-14 17:22:54 +01:00
|
|
|
{ stdenv, lib, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-19 10:46:26 +01:00
|
|
|
pname = "fnotifystat";
|
2020-10-31 23:18:01 +00:00
|
|
|
version = "0.02.07";
|
2016-07-14 17:22:54 +01:00
|
|
|
src = fetchurl {
|
2019-04-22 09:14:28 +01:00
|
|
|
url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz";
|
2020-10-31 23:18:01 +00:00
|
|
|
sha256 = "0ipfg2gymbgx7bqlx1sq5p2y89k5j18iqnb0wa27n5s3kh9sh8w0";
|
2016-07-14 17:22:54 +01:00
|
|
|
};
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
postInstall = ''
|
|
|
|
mv $out/usr/* $out
|
|
|
|
rm -r $out/usr
|
|
|
|
'';
|
|
|
|
meta = with lib; {
|
|
|
|
description = "File activity monitoring tool";
|
2020-02-28 14:30:08 +00:00
|
|
|
homepage = "https://kernel.ubuntu.com/~cking/fnotifystat/";
|
2016-07-14 17:22:54 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ womfoo ];
|
|
|
|
};
|
|
|
|
}
|