nixpkgs/pkgs/os-specific/linux/cpupower/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, buildPackages, kernel, pciutils, gettext }:
stdenv.mkDerivation {
pname = "cpupower";
inherit (kernel) version src;
2018-01-21 06:34:22 +00:00
nativeBuildInputs = [ gettext ];
buildInputs = [ pciutils ];
postPatch = ''
cd tools/power/cpupower
2018-01-21 06:34:22 +00:00
sed -i 's,/bin/true,${buildPackages.coreutils}/bin/true,' Makefile
sed -i 's,/bin/pwd,${buildPackages.coreutils}/bin/pwd,' Makefile
sed -i 's,/usr/bin/install,${buildPackages.coreutils}/bin/install,' Makefile
'';
2018-01-21 06:34:22 +00:00
makeFlags = [ "CROSS=${stdenv.cc.targetPrefix}" ];
installFlags = stdenv.lib.mapAttrsToList
(n: v: "${n}dir=${placeholder "out"}/${v}") {
bin = "bin";
sbin = "sbin";
man = "share/man";
include = "include";
lib = "lib";
locale = "share/locale";
doc = "share/doc/cpupower";
conf = "etc";
bash_completion_ = "share/bash-completion/completions";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
2014-11-11 13:20:43 +00:00
description = "Tool to examine and tune power saving features";
2016-05-08 21:04:03 +00:00
homepage = https://www.kernel.org/;
license = licenses.gpl2;
platforms = platforms.linux;
};
}