depot/pkgs/by-name/in/intel-undervolt/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

35 lines
844 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "intel-undervolt";
version = "1.7";
src = fetchFromGitHub {
owner = "kitsunyan";
repo = "intel-undervolt";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-BxTNqXC+vG24/y8yZ/h1Ep4F8MwVdjsr5uo/BjuWULo=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp intel-undervolt $out/bin
runHook postInstall
'';
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 ];
};
})