zenmonitor: init at 1.3

This commit is contained in:
Alexander Bakker 2019-11-20 14:17:54 +01:00
parent 2ff742e970
commit fb775ae472
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, pkgconfig, gtk3, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "zenmonitor";
version = "1.3";
src = fetchFromGitHub {
owner = "ocerman";
repo = "zenmonitor";
rev = "v${version}";
sha256 = "16p2njrgik8zfkidm64v4qy53qlsqqxxgr9m3n84pr9l3pk25dwk";
};
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 ];
};
}

View File

@ -17122,6 +17122,8 @@ in
zd1211fw = callPackage ../os-specific/linux/firmware/zd1211 { };
zenmonitor = callPackage ../os-specific/linux/zenmonitor { };
inherit (callPackage ../os-specific/linux/zfs {
configFile = "user";
}) zfsStable zfsUnstable;