nixpkgs-suyu/pkgs/os-specific/linux/fnotifystat/default.nix

23 lines
651 B
Nix
Raw Normal View History

2016-07-14 18:22:54 +02:00
{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
pname = "fnotifystat";
2020-02-28 15:30:08 +01:00
version = "0.02.05";
2016-07-14 18:22:54 +02:00
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz";
2020-02-28 15:30:08 +01:00
sha256 = "1b8pxq731sj976m2daf0hnqfaaq688vqnjffinpwh2w9nzzi4gi9";
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";
2020-02-28 15:30:08 +01: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 ];
};
}