cpustat: init at 0.02.09

This commit is contained in:
Will Dietz 2019-09-14 16:54:15 -05:00
parent 2ff3620d0d
commit a546053664
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, lib, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "cpustat";
version = "0.02.09";
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.xz";
sha256 = "12xahv65yrhs5r830clkl1qnwg3dnrk5qn3zsznzbv1iy2f3cj7y";
};
buildInputs = [ ncurses ];
installFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man/man8"
];
meta = with lib; {
description = "CPU usage monitoring tool";
homepage = "https://kernel.ubuntu.com/~cking/cpustat/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -15408,6 +15408,8 @@ in
cifs-utils = callPackage ../os-specific/linux/cifs-utils { };
cpustat = callPackage ../os-specific/linux/cpustat { };
cockroachdb = callPackage ../servers/sql/cockroachdb { };
conky = callPackage ../os-specific/linux/conky ({