23 lines
626 B
Nix
23 lines
626 B
Nix
|
{ stdenv, lib, fetchzip, ncurses }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "eventstat";
|
||
|
version = "0.04.09";
|
||
|
src = fetchzip {
|
||
|
url = "https://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz";
|
||
|
sha256 = "1b3m58mak62ym2amnmk62c2d6fypk30fw6jsmirh1qz7dwix4bl5";
|
||
|
};
|
||
|
buildInputs = [ ncurses ];
|
||
|
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 ];
|
||
|
};
|
||
|
}
|