2014-03-17 22:33:39 +00:00
|
|
|
{ stdenv, fetchurl, kernel, coreutils, pciutils, gettext }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "cpupower-${kernel.version}";
|
|
|
|
|
|
|
|
src = kernel.src;
|
|
|
|
|
|
|
|
buildInputs = [ coreutils pciutils gettext ];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
cd tools/power/cpupower
|
|
|
|
sed -i 's,/bin/true,${coreutils}/bin/true,' Makefile
|
|
|
|
sed -i 's,/bin/pwd,${coreutils}/bin/pwd,' Makefile
|
|
|
|
sed -i 's,/usr/bin/install,${coreutils}/bin/install,' Makefile
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make \
|
|
|
|
bindir="$out/bin" \
|
|
|
|
sbindir="$out/sbin" \
|
|
|
|
mandir="$out/share/man" \
|
|
|
|
includedir="$out/include" \
|
|
|
|
libdir="$out/lib" \
|
|
|
|
localedir="$out/share/locale" \
|
|
|
|
docdir="$out/share/doc/cpupower" \
|
|
|
|
confdir="$out/etc" \
|
|
|
|
install install-man
|
|
|
|
'';
|
|
|
|
|
|
|
|
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/;
|
2014-03-17 22:33:39 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|