0f2042888d
Upstream has moved to Github (#151245)
29 lines
752 B
Nix
29 lines
752 B
Nix
{ stdenv, lib, fetchFromGitHub, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "eventstat";
|
|
version = "0.04.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ColinIanKing";
|
|
repo = pname;
|
|
rev = "V${version}";
|
|
hash = "sha256-psamt9omhakiO3Kx2EzofPL2VAsva7XKQTZmn6zKefA=";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
installFlags = [
|
|
"BINDIR=${placeholder "out"}/bin"
|
|
"MANDIR=${placeholder "out"}/share/man/man8"
|
|
"BASHDIR=${placeholder "out"}/share/bash-completion/completions"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple monitoring of system events";
|
|
homepage = "https://github.com/ColinIanKing/eventstat";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
};
|
|
}
|