mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
Merge pull request #68911 from dtzWill/feature/power-calibrate
power-calibrate: init at 0.01.28
This commit is contained in:
commit
3a9e0f7a78
24
pkgs/os-specific/linux/power-calibrate/default.nix
Normal file
24
pkgs/os-specific/linux/power-calibrate/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -15738,6 +15738,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 New Issue
Block a user