nixpkgs/pkgs/os-specific/linux/undervolt/default.nix

28 lines
912 B
Nix
Raw Normal View History

2018-08-12 02:00:54 +00:00
{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
2018-09-19 19:24:06 +00:00
version = "0.2.9";
2018-08-12 02:00:54 +00:00
pname = "undervolt";
src = fetchFromGitHub {
owner = "georgewhewell";
repo = "undervolt";
rev = "${version}";
2018-09-19 19:24:06 +00:00
sha256 = "1d934lp8yczrfslmwff6fxzd4arja2vg00s5kwdr949bxpa6w59c";
2018-08-12 02:00:54 +00:00
};
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" ];
};
}