forked from mirrors/nixpkgs
power-calibrate: init at 0.01.28
This commit is contained in:
parent
2ff3620d0d
commit
467e561be0
21
pkgs/os-specific/linux/power-calibrate/default.nix
Normal file
21
pkgs/os-specific/linux/power-calibrate/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue