2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
2018-08-12 02:00:54 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-06-27 11:09:21 +00:00
|
|
|
version = "0.3.0";
|
2018-08-12 02:00:54 +00:00
|
|
|
pname = "undervolt";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "georgewhewell";
|
|
|
|
repo = "undervolt";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2020-06-27 11:09:21 +00:00
|
|
|
sha256 = "1aybk8vbb4745raz7rvpkk6b98xrdiwjhkpbv3kwsgsr9sj42lp0";
|
2018-08-12 02:00:54 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-31 04:31:33 +00:00
|
|
|
homepage = "https://github.com/georgewhewell/undervolt/";
|
2018-08-12 02:00:54 +00:00
|
|
|
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" ];
|
|
|
|
};
|
|
|
|
}
|