2021-01-25 09:26:54 +01:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
2020-12-15 22:47:51 +01:00
|
|
|
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
|
|
pname = "auto-cpufreq";
|
2021-02-10 01:12:43 +01:00
|
|
|
version = "1.6.1";
|
2020-12-15 22:47:51 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AdnanHodzic";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-02-10 01:12:43 +01:00
|
|
|
sha256 = "sha256-oz3C1150CPfT0kkx1x7VIX/Rm06dkjyxeDPFCRJaWNc=";
|
2020-12-15 22:47:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [ click distro psutil ];
|
|
|
|
|
|
|
|
doCheck = false;
|
2021-01-24 14:47:01 +01:00
|
|
|
pythonImportsCheck = [ "auto_cpufreq" ];
|
2020-12-15 22:47:51 +01:00
|
|
|
|
|
|
|
# patch to prevent script copying and to disable install
|
|
|
|
patches = [ ./prevent-install-and-copy.patch ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# copy script manually
|
2021-01-24 14:47:01 +01:00
|
|
|
cp ${src}/scripts/cpufreqctl.sh $out/bin/cpufreqctl.auto-cpufreq
|
|
|
|
|
|
|
|
# systemd service
|
|
|
|
mkdir -p $out/lib/systemd/system
|
|
|
|
cp ${src}/scripts/auto-cpufreq.service $out/lib/systemd/system
|
|
|
|
substituteInPlace $out/lib/systemd/system/auto-cpufreq.service --replace "/usr/local" $out
|
2020-12-15 22:47:51 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-12-15 22:47:51 +01:00
|
|
|
homepage = "https://github.com/AdnanHodzic/auto-cpufreq";
|
|
|
|
description = "Automatic CPU speed & power optimizer for Linux";
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.Technical27 ];
|
|
|
|
};
|
|
|
|
}
|