Merge pull request #73815 from alexbakker/zenmonitor

zenmonitor: init at 1.3
This commit is contained in:
Mario Rodas 2020-01-29 05:02:43 -05:00 committed by GitHub
commit 90d969e211
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -17252,6 +17252,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;