nixpkgs/pkgs/os-specific/linux/powertop/default.nix

25 lines
778 B
Nix
Raw Normal View History

2012-09-07 13:27:32 +02:00
{ stdenv, fetchurl, gettext, libnl, ncurses, pciutils, pkgconfig, zlib }:
stdenv.mkDerivation rec {
name = "powertop-2.8";
2013-01-15 18:43:53 +01:00
src = fetchurl {
2014-08-14 12:54:21 +02:00
url = "https://01.org/sites/default/files/downloads/powertop/${name}.tar.gz";
sha256 = "0nlwazxbnn0k6q5f5b09wdhw0f194lpzkp3l7vxansqhfczmcyx8";
};
2012-09-07 13:27:32 +02:00
buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ];
postPatch = ''
substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe"
substituteInPlace src/calibrate/calibrate.cpp --replace "/usr/bin/xset" "xset"
'';
meta = {
description = "Analyze power consumption on Intel-based laptops";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.chaoflow ];
platforms = stdenv.lib.platforms.linux;
};
}