forked from mirrors/nixpkgs
6ac550a3e9
Removed patch, since an equivalent fix was made upstream and included in the 2.8 release.
24 lines
695 B
Nix
24 lines
695 B
Nix
{ stdenv, fetchurl, gettext, libnl, ncurses, pciutils, pkgconfig, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "powertop-2.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://01.org/sites/default/files/downloads/powertop/${name}.tar.gz";
|
|
sha256 = "0nlwazxbnn0k6q5f5b09wdhw0f194lpzkp3l7vxansqhfczmcyx8";
|
|
};
|
|
|
|
buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ];
|
|
|
|
postPatch = ''
|
|
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;
|
|
};
|
|
}
|