2018-03-30 05:14:09 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, 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 {
|
2019-01-05 06:37:56 +00:00
|
|
|
pname = "powertop";
|
2020-07-29 07:16:58 +01:00
|
|
|
version = "2.13";
|
2013-01-15 17:43:53 +00:00
|
|
|
|
2007-09-23 11:59:54 +01:00
|
|
|
src = fetchurl {
|
2020-07-29 07:16:58 +01:00
|
|
|
url = "https://01.org/sites/default/files/downloads/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "0y1ixw8v17fdb1ima0zshrd0rh4zxdh10r93nrrvq6d4lhn9jpx6";
|
2007-09-23 11:59:54 +01:00
|
|
|
};
|
2012-06-11 11:28:21 +01:00
|
|
|
|
2018-02-19 11:14:42 +00:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2016-10-13 21:01:59 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gettext libnl ncurses pciutils zlib ];
|
2012-06-11 11:28:21 +01:00
|
|
|
|
2018-03-30 05:14:09 +01:00
|
|
|
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl (
|
|
|
|
fetchpatch {
|
|
|
|
name = "strerror_r.patch";
|
2020-05-15 16:58:27 +01:00
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/powertop/strerror_r.patch?id=3b9214d436f1611f297b01f72469d66bfe729d6e";
|
2018-03-30 05:14:09 +01:00
|
|
|
sha256 = "1kzddhcrb0n2iah4lhgxwwy4mkhq09ch25jjngyq6pdj6pmfkpfw";
|
|
|
|
}
|
2020-07-29 07:16:58 +01:00
|
|
|
);
|
2018-03-30 05:14:09 +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
|
|
|
'';
|
|
|
|
|
2016-10-13 21:01:59 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-10-13 09:53:47 +01:00
|
|
|
description = "Analyze power consumption on Intel-based laptops";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://01.org/powertop";
|
2016-10-13 21:01:59 +01:00
|
|
|
license = licenses.gpl2;
|
2019-02-22 15:14:13 +00:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2016-10-13 21:01:59 +01:00
|
|
|
platforms = platforms.linux;
|
2011-10-13 09:53:47 +01:00
|
|
|
};
|
2007-09-23 11:59:54 +01:00
|
|
|
}
|