about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cpupower/default.nix
blob: fa6b07d4f92f498152dac73176fb0e1d71bc6104 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenv, buildPackages, kernel, pciutils, gettext }:

stdenv.mkDerivation {
  pname = "cpupower";
  inherit (kernel) version src;

  nativeBuildInputs = [ gettext ];
  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}" ];

  installFlags = stdenv.lib.mapAttrsToList
    (n: v: "${n}=${placeholder "out"}/${v}") {
    bindir = "bin";
    sbindir = "sbin";
    mandir = "share/man";
    includedir = "include";
    libdir = "lib";
    localedir = "share/locale";
    docdir = "share/doc/cpupower";
    confdir = "etc";
    bash_completion_dir = "share/bash-completion/completions";
  };

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Tool to examine and tune power saving features";
    homepage = https://www.kernel.org/;
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}