Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

58 lines
1.3 KiB
Nix

{
lib,
stdenv,
buildPackages,
kernel,
pciutils,
gettext,
which,
}:
stdenv.mkDerivation {
pname = "cpupower";
inherit (kernel) version src patches;
nativeBuildInputs = [
gettext
which
];
buildInputs = [ pciutils ];
postPatch = ''
cd tools/power/cpupower
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
'';
makeFlags = [
"CROSS=${stdenv.cc.targetPrefix}"
"CC=${stdenv.cc.targetPrefix}cc"
"LD=${stdenv.cc.targetPrefix}cc"
];
installFlags = lib.mapAttrsToList (n: v: "${n}dir=${placeholder "out"}/${v}") {
bin = "bin";
sbin = "sbin";
man = "share/man";
include = "include";
lib = "lib";
libexec = "libexec";
locale = "share/locale";
doc = "share/doc/cpupower";
conf = "etc";
bash_completion_ = "share/bash-completion/completions";
unit = "lib/systemd/system";
};
enableParallelBuilding = true;
meta = with lib; {
description = "Tool to examine and tune power saving features";
homepage = "https://www.kernel.org/";
license = licenses.gpl2Only;
mainProgram = "cpupower";
platforms = platforms.linux;
};
}