26 lines
664 B
Nix
26 lines
664 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake, pciutils, ... }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "ryzenadj";
|
|
version = "0.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FlyGoat";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-jRrIhKlejX0Yt1wkF/MBJk/6DAIGWWRK9oReCplNVKA=";
|
|
};
|
|
nativeBuildInputs = [ cmake pciutils ];
|
|
|
|
installPhase = ''
|
|
install -D -m0755 ryzenadj $out/bin/ryzenadj
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Adjust power management settings for Ryzen mobile processors";
|
|
homepage = src.meta.homepage;
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ aw ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|