about summary refs log tree commit diff
path: root/pkgs/by-name/au/auto-epp/package.nix
blob: 07e06ba5b4b940c4a17eee868d0f2e43c1ab320e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, stdenv, fetchFromGitHub, python3 }:
stdenv.mkDerivation rec {
  pname = "auto-epp";
  version = "1.2.1";

  src = fetchFromGitHub {
    owner = "jothi-prasath";
    repo = "auto-epp";
    rev = "refs/tags/v${version}";
    hash = "sha256-7sI8K+7ZAdzBN/XOzYQQZ1f9t+fFo6fcXYzX6abNyQ8=";
  };

  buildInputs = [ python3 ];

  installPhase = ''
    runHook preInstall
    install -Dm555 auto-epp $out/bin/auto-epp
    runHook postInstall
  '';

  meta = with lib; {
    mainProgram = "auto-epp";
    homepage = "https://github.com/jothi-prasath/auto-epp";
    description = "Auto-epp (energy performance preference) for AMD processors when amd_pstate=active";
    platforms = platforms.linux;
    license = licenses.mit;
    maintainers = [ maintainers.lamarios ];
  };
}