39 lines
900 B
Nix
Raw Permalink Normal View History

2024-09-20 13:39:48 -07:00
{
lib,
stdenv,
fetchFromGitHub,
2025-07-10 11:59:16 -04:00
nix-update-script,
2024-09-20 13:39:48 -07:00
}:
stdenv.mkDerivation (finalAttrs: {
pname = "intel-undervolt";
version = "1.7";
src = fetchFromGitHub {
owner = "kitsunyan";
repo = "intel-undervolt";
tag = finalAttrs.version;
2024-09-20 13:39:48 -07:00
hash = "sha256-BxTNqXC+vG24/y8yZ/h1Ep4F8MwVdjsr5uo/BjuWULo=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp intel-undervolt $out/bin
runHook postInstall
'';
2025-07-10 11:59:16 -04:00
passthru.updateScript = nix-update-script { };
2024-09-20 13:39:48 -07:00
meta = {
description = "Intel CPU undervolting and throttling configuration tool";
homepage = "https://github.com/kitsunyan/intel-undervolt";
mainProgram = "intel-undervolt";
license = lib.licenses.gpl3;
platforms = [ "x86_64-linux" ]; # It probably compiles for aaarch64-linux too, but what's the point?
maintainers = with lib.maintainers; [ pandapip1 ];
};
})