nixpkgs/pkgs/tools/system/throttled/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.3 KiB
Nix
Raw Permalink Normal View History

2023-01-29 08:19:17 +01:00
{ lib, stdenv, fetchFromGitHub, python3Packages, pciutils }:
2019-05-27 00:24:45 +02:00
stdenv.mkDerivation rec {
pname = "throttled";
2022-12-15 15:39:18 +01:00
version = "0.10.0";
2019-05-27 00:24:45 +02:00
src = fetchFromGitHub {
owner = "erpalma";
repo = pname;
rev = "v${version}";
2022-12-15 15:39:18 +01:00
sha256 = "sha256-0MsPp6y4r/uZB2SplKV+SAiJoxIs2jgOQmQoQQ2ZKwI=";
2019-05-27 00:24:45 +02:00
};
nativeBuildInputs = [ python3Packages.wrapPython ];
2020-02-21 06:39:41 +01:00
pythonPath = with python3Packages; [
2019-05-27 00:24:45 +02:00
configparser
dbus-python
pygobject3
];
2020-02-21 06:39:41 +01:00
# The upstream unit both assumes the install location, and tries to run in a virtualenv
2023-01-29 08:19:17 +01:00
postPatch = ''
sed -e 's|ExecStart=.*|ExecStart=${placeholder "out"}/bin/throttled.py|' -i systemd/throttled.service
substituteInPlace throttled.py --replace "'setpci'" "'${pciutils}/bin/setpci'"
'';
2019-05-27 00:24:45 +02:00
installPhase = ''
runHook preInstall
2022-12-15 15:39:18 +01:00
install -D -m755 -t $out/bin throttled.py
install -D -t $out/bin throttled.py mmio.py
2019-05-27 00:24:45 +02:00
install -D -m644 -t $out/etc etc/*
install -D -m644 -t $out/lib/systemd/system systemd/*
runHook postInstall
'';
postFixup = "wrapPythonPrograms";
2019-05-27 00:24:45 +02:00
meta = with lib; {
2019-05-27 00:24:45 +02:00
description = "Fix for Intel CPU throttling issues";
homepage = "https://github.com/erpalma/throttled";
2019-05-27 00:24:45 +02:00
license = licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ michaelpj ];
};
}