base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ev / eventstat / package.nix
blobe54135f3e72eda0f27c8fb44b4f0d80149159ae5
1 { stdenv, lib, fetchFromGitHub, ncurses }:
3 stdenv.mkDerivation rec {
4   pname = "eventstat";
5   version = "0.06.00";
7   src = fetchFromGitHub {
8     owner = "ColinIanKing";
9     repo = pname;
10     rev = "V${version}";
11     hash = "sha256-lCtXILpZn1/laRnsfE5DlQQQKKvfHxOJu87SkpWKeTE=";
12   };
14   buildInputs = [ ncurses ];
15   installFlags = [
16     "BINDIR=${placeholder "out"}/bin"
17     "MANDIR=${placeholder "out"}/share/man/man8"
18     "BASHDIR=${placeholder "out"}/share/bash-completion/completions"
19   ];
21   meta = with lib; {
22     description = "Simple monitoring of system events";
23     mainProgram = "eventstat";
24     homepage = "https://github.com/ColinIanKing/eventstat";
25     license = licenses.gpl2Plus;
26     platforms = platforms.linux;
27     maintainers = [ ];
28   };