23 lines
625 B
Nix
Raw Permalink Normal View History

2016-07-15 00:06:39 +08:00
{ stdenv, lib, fetchzip, ncurses }:
2015-09-29 15:44:51 -04:00
stdenv.mkDerivation rec {
pname = "eventstat";
2021-04-30 09:46:48 +00:00
version = "0.04.12";
2015-09-29 15:44:51 -04:00
src = fetchzip {
url = "https://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz";
2021-04-30 09:46:48 +00:00
sha256 = "sha256-XBSs/jZodCpI9BHgAF8+bE23gRCr2uebYiMJxxB8T5E=";
2015-09-29 15:44:51 -04:00
};
2016-07-15 00:06:39 +08:00
buildInputs = [ ncurses ];
2015-09-29 15:44:51 -04: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 ];
};
}