forked from mirrors/nixpkgs
undervolt: init at 0.2.8
This commit is contained in:
parent
c268986263
commit
e3cbeef9a8
2 changed files with 29 additions and 0 deletions
27
pkgs/os-specific/linux/undervolt/default.nix
Normal file
27
pkgs/os-specific/linux/undervolt/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
version = "0.2.8";
|
||||||
|
pname = "undervolt";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "georgewhewell";
|
||||||
|
repo = "undervolt";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "0crkqc5zq0gpyg031hfwdxymfc2gc1h8b6m0axzlh7gvnxlf5hra";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/georgewhewell/undervolt/;
|
||||||
|
description = "A program for undervolting Intel CPUs on Linux";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
Undervolt is a program for undervolting Intel CPUs under Linux. It works in a similar
|
||||||
|
manner to the Windows program ThrottleStop (i.e, MSR 0x150). You can apply a fixed
|
||||||
|
voltage offset to one of 5 voltage planes, and override your systems temperature
|
||||||
|
target (CPU will throttle when this temperature is reached).
|
||||||
|
'';
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -22179,4 +22179,6 @@ with pkgs;
|
||||||
powershell = callPackage ../shells/powershell { };
|
powershell = callPackage ../shells/powershell { };
|
||||||
|
|
||||||
doing = callPackage ../applications/misc/doing { };
|
doing = callPackage ../applications/misc/doing { };
|
||||||
|
|
||||||
|
undervolt = callPackage ../os-specific/linux/undervolt { };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue