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 {
|
2014-12-07 16:20:21 +00:00
|
|
|
name = "powertop-2.7";
|
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";
|
2014-12-07 16:20:21 +00:00
|
|
|
sha256 = "1jkqqr3l1x98m7rgin1dgfzxqwj4vciw9lyyq1kl9bdswa818jwd";
|
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
|
|
|
# Fix --auto-tune bug:
|
|
|
|
# https://lists.01.org/pipermail/powertop/2014-December/001727.html
|
|
|
|
patches = [ ./auto-tune.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
2015-07-08 13:10:33 +01:00
|
|
|
substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe"
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
}
|