4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
54 lines
1.7 KiB
Nix
54 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, kernel, which }:
|
|
|
|
# Don't bother with older versions, though some might even work:
|
|
assert stdenv.lib.versionAtLeast kernel.version "4.10";
|
|
|
|
let
|
|
release = "0.4.0";
|
|
revbump = "rev25"; # don't forget to change forum download id...
|
|
in stdenv.mkDerivation rec {
|
|
name = "linux-phc-intel-${version}-${kernel.version}";
|
|
version = "${release}-${revbump}";
|
|
|
|
src = fetchurl {
|
|
sha256 = "1w91hpphd8i0br7g5qra26jdydqar45zqwq6jq8yyz6l0vb10zlz";
|
|
url = "http://www.linux-phc.org/forum/download/file.php?id=194";
|
|
name = "phc-intel-pack-${revbump}.tar.bz2";
|
|
};
|
|
|
|
nativeBuildInputs = [ which ] ++ kernel.moduleBuildDependencies;
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
makeFlags = with kernel; [
|
|
"DESTDIR=$(out)"
|
|
"KERNELSRC=${dev}/lib/modules/${modDirVersion}/build"
|
|
];
|
|
|
|
configurePhase = ''
|
|
make $makeFlags brave
|
|
'';
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
installPhase = ''
|
|
install -m 755 -d $out/lib/modules/${kernel.modDirVersion}/extra/
|
|
install -m 644 *.ko $out/lib/modules/${kernel.modDirVersion}/extra/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Undervolting kernel driver for Intel processors";
|
|
longDescription = ''
|
|
PHC is a Linux kernel patch to undervolt processors. This can divide the
|
|
power consumption of the CPU by two or more, increasing battery life
|
|
while noticably reducing fan noise. This driver works only on supported
|
|
Intel architectures.
|
|
'';
|
|
homepage = "http://www.linux-phc.org/";
|
|
downloadPage = "http://www.linux-phc.org/forum/viewtopic.php?f=7&t=267";
|
|
license = licenses.gpl2;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
broken = stdenv.lib.versionAtLeast kernel.version "4.18";
|
|
};
|
|
}
|