nixpkgs/pkgs/os-specific/linux/cpustat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
739 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, ncurses }:
2019-09-14 22:54:15 +01:00
stdenv.mkDerivation rec {
pname = "cpustat";
version = "0.02.17";
src = fetchFromGitHub {
owner = "ColinIanKing";
repo = pname;
rev = "V${version}";
hash = "sha256-4HDXRtklzQSsywCGCTKdz6AtZta9R1mx7qkT7skX6Kc=";
2019-09-14 22:54:15 +01:00
};
2019-09-14 22:54:15 +01:00
buildInputs = [ ncurses ];
2019-09-14 22:54:15 +01:00
installFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man/man8"
"BASHDIR=${placeholder "out"}/share/bash-completion/completions"
2019-09-14 22:54:15 +01:00
];
2019-09-14 22:54:15 +01:00
meta = with lib; {
description = "CPU usage monitoring tool";
homepage = "https://github.com/ColinIanKing/cpustat";
2019-09-14 22:54:15 +01:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
}