2016-07-14 18:22:54 +02:00
|
|
|
{ stdenv, lib, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fnotifystat-${version}";
|
2018-06-19 22:17:30 +02:00
|
|
|
version = "0.02.01";
|
2016-07-14 18:22:54 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz";
|
2018-06-19 22:17:30 +02:00
|
|
|
sha256 = "18p6rqb3bhs2ih6mnp57j0cyawjm0iwky6y3ays54alkxqaz8gmx";
|
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";
|
|
|
|
homepage = http://kernel.ubuntu.com/~cking/fnotifystat/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ womfoo ];
|
|
|
|
};
|
|
|
|
}
|