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

23 lines
626 B
Nix
Raw Normal View History

2016-07-14 18:06:39 +02:00
{ stdenv, lib, fetchzip, ncurses }:
2015-09-29 21:44:51 +02:00
stdenv.mkDerivation rec {
pname = "eventstat";
2020-07-09 05:20:03 +02:00
version = "0.04.10";
2015-09-29 21:44:51 +02:00
src = fetchzip {
url = "https://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz";
2020-07-09 05:20:03 +02:00
sha256 = "0rmg49m56qxji7gwci03pkk4f4hnaq1n2x1348dqkaf5zs5nhi6b";
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 ];
};
}