mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
undervolt: init at 0.2.8
This commit is contained in:
parent
c268986263
commit
e3cbeef9a8
2 changed files with 29 additions and 0 deletions
27
pkgs/os-specific/linux/undervolt/default.nix
Normal file
27
pkgs/os-specific/linux/undervolt/default.nix
Normal 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" ];
|
||||
};
|
||||
}
|
|
@ -22179,4 +22179,6 @@ with pkgs;
|
|||
powershell = callPackage ../shells/powershell { };
|
||||
|
||||
doing = callPackage ../applications/misc/doing { };
|
||||
|
||||
undervolt = callPackage ../os-specific/linux/undervolt { };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue