27 lines
720 B
Nix
27 lines
720 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, gtk3, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zenmonitor";
|
|
version = "1.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ocerman";
|
|
repo = "zenmonitor";
|
|
rev = "v${version}";
|
|
sha256 = "0smv94vi36hziw42gasivyw25h5n1sgwwk1cv78id5g85w0kw246";
|
|
};
|
|
|
|
buildInputs = [ gtk3 ];
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Monitoring software for AMD Zen-based CPUs";
|
|
homepage = "https://github.com/ocerman/zenmonitor";
|
|
license = licenses.mit;
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
maintainers = with maintainers; [ alexbakker ];
|
|
};
|
|
}
|