undervolt: init at 0.2.8

This commit is contained in:
Jake Woods 2018-08-12 12:00:54 +10:00
parent c268986263
commit e3cbeef9a8
2 changed files with 29 additions and 0 deletions

View 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" ];
};
}

View file

@ -22179,4 +22179,6 @@ with pkgs;
powershell = callPackage ../shells/powershell { };
doing = callPackage ../applications/misc/doing { };
undervolt = callPackage ../os-specific/linux/undervolt { };
}