summary refs log blame commit diff
path: root/pkgs/os-specific/linux/undervolt/default.nix
blob: cc9fb7374658bb05b26ea02f00e06cea360f02f4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                          

                                            
                    




                            
                  
                                                                    

    
                    
                                                             











                                                                                           
{ 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" ];
  };
}