nixpkgs/pkgs/os-specific/linux/eventstat/default.nix

23 lines
625 B
Nix
Raw Normal View History

2016-07-14 17:06:39 +01:00
{ stdenv, lib, fetchzip, ncurses }:
2015-09-29 20:44:51 +01:00
stdenv.mkDerivation rec {
pname = "eventstat";
2021-04-30 10:46:48 +01:00
version = "0.04.12";
2015-09-29 20:44:51 +01:00
src = fetchzip {
url = "https://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz";
2021-04-30 10:46:48 +01:00
sha256 = "sha256-XBSs/jZodCpI9BHgAF8+bE23gRCr2uebYiMJxxB8T5E=";
2015-09-29 20:44:51 +01:00
};
2016-07-14 17:06:39 +01:00
buildInputs = [ ncurses ];
2015-09-29 20:44:51 +01:00
installFlags = [ "DESTDIR=$(out)" ];
postInstall = ''
mv $out/usr/* $out
rm -r $out/usr
'';
meta = with lib; {
description = "Simple monitoring of system events";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
};
}