3
0
Fork 0
forked from mirrors/nixpkgs

power-calibrate: init at 0.01.28

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

View file

@ -0,0 +1,21 @@
{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
pname = "power-calibrate";
version = "0.01.28";
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
sha256 = "1miyjs0vngzfdlsxhn5gndcalzkh28grg4m6faivvp1c6mjp794m";
};
installFlags = [
"BINDIR=${placeholder "out"}/bin"
"MANDIR=${placeholder "out"}/share/man/man8"
];
meta = with lib; {
description = "Tool to calibrate power consumption";
homepage = "https://kernel.ubuntu.com/~cking/power-calibrate/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -15625,6 +15625,8 @@ in
osxfuse = callPackage ../os-specific/darwin/osxfuse { };
power-calibrate = callPackage ../os-specific/linux/power-calibrate { };
powerstat = callPackage ../os-specific/linux/powerstat { };
smemstat = callPackage ../os-specific/linux/smemstat { };