nixpkgs/pkgs/os-specific/linux/undervolt/default.nix
2021-01-25 18:31:47 +01:00

28 lines
899 B
Nix

{ lib, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
version = "0.3.0";
pname = "undervolt";
src = fetchFromGitHub {
owner = "georgewhewell";
repo = "undervolt";
rev = version;
sha256 = "1aybk8vbb4745raz7rvpkk6b98xrdiwjhkpbv3kwsgsr9sj42lp0";
};
meta = with 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" ];
};
}