nixpkgs/pkgs/os-specific/linux/fnotifystat/default.nix
R. RyanTM b498289741 fnotifystat: 0.02.01 -> 0.02.02
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fnotifystat/versions
2019-07-15 16:10:55 +02:00

23 lines
659 B
Nix

{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
name = "fnotifystat-${version}";
version = "0.02.02";
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz";
sha256 = "14d6cikny9rn7fcc6ncwh02mg6jrgfi1abpxifr46gyvp3w38w55";
};
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 ];
};
}