mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, gobject-introspection, python3Packages, pciutils, wrapGAppsNoGuiHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "throttled";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "erpalma";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-0MsPp6y4r/uZB2SplKV+SAiJoxIs2jgOQmQoQQ2ZKwI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
python3Packages.wrapPython
|
|
wrapGAppsNoGuiHook
|
|
];
|
|
|
|
pythonPath = with python3Packages; [
|
|
configparser
|
|
dbus-python
|
|
pygobject3
|
|
];
|
|
|
|
# The upstream unit both assumes the install location, and tries to run in a virtualenv
|
|
postPatch = ''
|
|
sed -e 's|ExecStart=.*|ExecStart=${placeholder "out"}/bin/throttled.py|' -i systemd/throttled.service
|
|
|
|
substituteInPlace throttled.py --replace "'setpci'" "'${pciutils}/bin/setpci'"
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D -m755 -t $out/bin throttled.py
|
|
install -D -t $out/bin throttled.py mmio.py
|
|
install -D -m644 -t $out/etc etc/*
|
|
install -D -m644 -t $out/lib/systemd/system systemd/*
|
|
runHook postInstall
|
|
'';
|
|
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
postFixup = "wrapPythonPrograms";
|
|
|
|
meta = with lib; {
|
|
description = "Fix for Intel CPU throttling issues";
|
|
homepage = "https://github.com/erpalma/throttled";
|
|
license = licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ ];
|
|
};
|
|
}
|