mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-30 06:01:19 +00:00
intel-undervolt: init at 1.7
This commit is contained in:
parent
9799f75f7e
commit
0e8c4663aa
35
pkgs/by-name/in/intel-undervolt/package.nix
Normal file
35
pkgs/by-name/in/intel-undervolt/package.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user