2021-01-18 22:50:56 -08:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, gettext, libnl, ncurses, pciutils, pkg-config, zlib }:
|
2007-09-23 03:59:54 -07:00
|
|
|
|
2012-06-11 03:28:21 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-04 22:37:56 -08:00
|
|
|
pname = "powertop";
|
2020-07-28 23:16:58 -07:00
|
|
|
version = "2.13";
|
2013-01-15 09:43:53 -08:00
|
|
|
|
2007-09-23 03:59:54 -07:00
|
|
|
src = fetchurl {
|
2020-07-28 23:16:58 -07:00
|
|
|
url = "https://01.org/sites/default/files/downloads/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "0y1ixw8v17fdb1ima0zshrd0rh4zxdh10r93nrrvq6d4lhn9jpx6";
|
2007-09-23 03:59:54 -07:00
|
|
|
};
|
2012-06-11 03:28:21 -07:00
|
|
|
|
2018-02-19 03:14:42 -08:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-10-13 13:01:59 -07:00
|
|
|
buildInputs = [ gettext libnl ncurses pciutils zlib ];
|
2012-06-11 03:28:21 -07:00
|
|
|
|
2021-01-15 06:45:37 -08:00
|
|
|
patches = lib.optional stdenv.hostPlatform.isMusl (
|
2018-03-29 21:14:09 -07:00
|
|
|
fetchpatch {
|
|
|
|
name = "strerror_r.patch";
|
2020-05-15 08:58:27 -07:00
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/powertop/strerror_r.patch?id=3b9214d436f1611f297b01f72469d66bfe729d6e";
|
2018-03-29 21:14:09 -07:00
|
|
|
sha256 = "1kzddhcrb0n2iah4lhgxwwy4mkhq09ch25jjngyq6pdj6pmfkpfw";
|
|
|
|
}
|
2020-07-28 23:16:58 -07:00
|
|
|
);
|
2018-03-29 21:14:09 -07:00
|
|
|
|
2015-10-15 11:25:43 -07:00
|
|
|
postPatch = ''
|
2015-07-08 05:10:33 -07:00
|
|
|
substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe"
|
2016-01-31 12:40:05 -08:00
|
|
|
substituteInPlace src/calibrate/calibrate.cpp --replace "/usr/bin/xset" "xset"
|
2020-10-17 14:43:23 -07:00
|
|
|
substituteInPlace src/tuning/bluetooth.cpp --replace "/usr/bin/hcitool" "hcitool"
|
2015-07-08 05:10:33 -07:00
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2011-10-13 01:53:47 -07:00
|
|
|
description = "Analyze power consumption on Intel-based laptops";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://01.org/powertop";
|
2016-10-13 13:01:59 -07:00
|
|
|
license = licenses.gpl2;
|
2019-02-22 07:14:13 -08:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2016-10-13 13:01:59 -07:00
|
|
|
platforms = platforms.linux;
|
2011-10-13 01:53:47 -07:00
|
|
|
};
|
2007-09-23 03:59:54 -07:00
|
|
|
}
|