2012-09-07 12:27:32 +01:00
|
|
|
{ stdenv, fetchurl, gettext, libnl, ncurses, pciutils, pkgconfig, zlib }:
|
2007-09-23 11:59:54 +01:00
|
|
|
|
2012-06-11 11:28:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-01-13 12:06:29 +00:00
|
|
|
name = "powertop-2.8";
|
2013-01-15 17:43:53 +00:00
|
|
|
|
2007-09-23 11:59:54 +01:00
|
|
|
src = fetchurl {
|
2014-08-14 11:54:21 +01:00
|
|
|
url = "https://01.org/sites/default/files/downloads/powertop/${name}.tar.gz";
|
2016-01-13 12:06:29 +00:00
|
|
|
sha256 = "0nlwazxbnn0k6q5f5b09wdhw0f194lpzkp3l7vxansqhfczmcyx8";
|
2007-09-23 11:59:54 +01:00
|
|
|
};
|
2012-06-11 11:28:21 +01:00
|
|
|
|
2012-09-07 12:27:32 +01:00
|
|
|
buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ];
|
2012-06-11 11:28:21 +01:00
|
|
|
|
2015-10-15 19:25:43 +01:00
|
|
|
postPatch = ''
|
2015-07-08 13:10:33 +01:00
|
|
|
substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe"
|
2016-01-31 20:40:05 +00:00
|
|
|
substituteInPlace src/calibrate/calibrate.cpp --replace "/usr/bin/xset" "xset"
|
2015-07-08 13:10:33 +01:00
|
|
|
'';
|
|
|
|
|
2011-10-13 09:53:47 +01:00
|
|
|
meta = {
|
|
|
|
description = "Analyze power consumption on Intel-based laptops";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-10-13 09:53:47 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.chaoflow ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
2007-09-23 11:59:54 +01:00
|
|
|
}
|