nixpkgs-suyu/pkgs/os-specific/linux/zenmonitor/default.nix

27 lines
728 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, gtk3, wrapGAppsHook }:
2019-11-20 14:17:54 +01:00
stdenv.mkDerivation rec {
pname = "zenmonitor";
version = "1.5.0";
2019-11-20 14:17:54 +01:00
src = fetchFromGitHub {
owner = "Ta180m";
repo = "zenmonitor3";
2019-11-20 14:17:54 +01:00
rev = "v${version}";
sha256 = "sha256-dbjLpfflIsEU+wTApghJYBPxBXqS/7MJqcMBcj50o6I=";
2019-11-20 14:17:54 +01:00
};
buildInputs = [ gtk3 ];
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
2019-11-20 14:17:54 +01:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
2019-11-20 14:17:54 +01:00
description = "Monitoring software for AMD Zen-based CPUs";
homepage = "https://github.com/Ta180m/zenmonitor3";
2019-11-20 14:17:54 +01:00
license = licenses.mit;
platforms = [ "i686-linux" "x86_64-linux" ];
maintainers = with maintainers; [ alexbakker artturin ];
2019-11-20 14:17:54 +01:00
};
}