2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, 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 {
|
2019-01-05 06:37:56 +00:00
|
|
|
pname = "powertop";
|
2020-07-29 06:16:58 +00:00
|
|
|
version = "2.13";
|
2013-01-15 17:43:53 +00:00
|
|
|
|
2007-09-23 10:59:54 +00:00
|
|
|
src = fetchurl {
|
2020-07-29 06:16:58 +00:00
|
|
|
url = "https://01.org/sites/default/files/downloads/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "0y1ixw8v17fdb1ima0zshrd0rh4zxdh10r93nrrvq6d4lhn9jpx6";
|
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
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
patches = lib.optional stdenv.hostPlatform.isMusl (
|
2018-03-30 04:14:09 +00:00
|
|
|
fetchpatch {
|
|
|
|
name = "strerror_r.patch";
|
2020-05-15 15:58:27 +00:00
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/powertop/strerror_r.patch?id=3b9214d436f1611f297b01f72469d66bfe729d6e";
|
2018-03-30 04:14:09 +00:00
|
|
|
sha256 = "1kzddhcrb0n2iah4lhgxwwy4mkhq09ch25jjngyq6pdj6pmfkpfw";
|
|
|
|
}
|
2020-07-29 06:16:58 +00:00
|
|
|
);
|
2018-03-30 04:14:09 +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"
|
2020-10-17 21:43:23 +00:00
|
|
|
substituteInPlace src/tuning/bluetooth.cpp --replace "/usr/bin/hcitool" "hcitool"
|
2015-07-08 12:10:33 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2011-10-13 08:53:47 +00:00
|
|
|
description = "Analyze power consumption on Intel-based laptops";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://01.org/powertop";
|
2016-10-13 20:01:59 +00:00
|
|
|
license = licenses.gpl2;
|
2019-02-22 15:14:13 +00:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2016-10-13 20:01:59 +00:00
|
|
|
platforms = platforms.linux;
|
2011-10-13 08:53:47 +00:00
|
|
|
};
|
2007-09-23 10:59:54 +00:00
|
|
|
}
|