2016-07-14 18:06:39 +02:00
|
|
|
{ stdenv, lib, fetchzip, ncurses }:
|
2015-09-29 21:44:51 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "eventstat";
|
2020-03-04 22:49:16 +01:00
|
|
|
version = "0.04.09";
|
2015-09-29 21:44:51 +02:00
|
|
|
src = fetchzip {
|
2019-04-22 10:14:28 +02:00
|
|
|
url = "https://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz";
|
2020-03-04 22:49:16 +01:00
|
|
|
sha256 = "1b3m58mak62ym2amnmk62c2d6fypk30fw6jsmirh1qz7dwix4bl5";
|
2015-09-29 21:44:51 +02:00
|
|
|
};
|
2016-07-14 18:06:39 +02:00
|
|
|
buildInputs = [ ncurses ];
|
2015-09-29 21:44:51 +02: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 ];
|
|
|
|
};
|
|
|
|
}
|