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



                                                                        

                                                                     
                                       


                                                      
 
{ stdenv, fetchurl, gettext, libnl, ncurses, pciutils, pkgconfig, zlib }:

stdenv.mkDerivation rec {
  name = "powertop-2.7";

  src = fetchurl {
    url = "https://01.org/sites/default/files/downloads/powertop/${name}.tar.gz";
    sha256 = "1jkqqr3l1x98m7rgin1dgfzxqwj4vciw9lyyq1kl9bdswa818jwd";
  };

  buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ];

  patchPhase = ''
    substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe"
  '';

  meta = {
    description = "Analyze power consumption on Intel-based laptops";
    license = stdenv.lib.licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.chaoflow ];
    platforms = stdenv.lib.platforms.linux;
  };
}