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