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