2012-09-07 11:27:32 +00:00
|
|
|
{ stdenv, fetchurl, gettext, libnl, ncurses, pciutils, pkgconfig, zlib }:
|
2007-09-23 10:59:54 +00:00
|
|
|
|
2012-06-11 10:28:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-19 23:59:52 +00:00
|
|
|
name = "powertop-${version}";
|
|
|
|
version = "2.9";
|
2013-01-15 17:43:53 +00:00
|
|
|
|
2007-09-23 10:59:54 +00:00
|
|
|
src = fetchurl {
|
2017-06-19 23:59:52 +00:00
|
|
|
url = "https://01.org/sites/default/files/downloads/powertop/powertop-v${version}.tar.gz";
|
|
|
|
sha256 = "0l4jjlf05li2mc6g8nrss3h435wjhmnqd8m7v3kha3x0x7cbfzxa";
|
2007-09-23 10:59:54 +00:00
|
|
|
};
|
2012-06-11 10:28:21 +00:00
|
|
|
|
2018-02-19 11:14:42 +00:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2016-10-13 20:01:59 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gettext libnl ncurses pciutils zlib ];
|
2012-06-11 10:28:21 +00:00
|
|
|
|
2015-10-15 18:25:43 +00:00
|
|
|
postPatch = ''
|
2015-07-08 12:10:33 +00: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 12:10:33 +00:00
|
|
|
'';
|
|
|
|
|
2016-10-13 20:01:59 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-10-13 08:53:47 +00:00
|
|
|
description = "Analyze power consumption on Intel-based laptops";
|
2016-10-13 20:01:59 +00:00
|
|
|
homepage = https://01.org/powertop;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ chaoflow fpletz ];
|
|
|
|
platforms = platforms.linux;
|
2011-10-13 08:53:47 +00:00
|
|
|
};
|
2007-09-23 10:59:54 +00:00
|
|
|
}
|