Files
nixpkgs/pkgs/by-name/ze/zenmonitor/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
840 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
pkg-config,
gtk3,
wrapGAppsHook3,
}:
stdenv.mkDerivation rec {
pname = "zenmonitor";
version = "unstable-2024-12-19";
src = fetchFromGitLab {
owner = "shdwchn10";
repo = "zenmonitor3";
rev = "a09f0b25d33967fd32f3831304be049b008cdabf";
sha256 = "sha256-5N1Hhv2s0cv4Rujw4wFGHyIy7NyKAFThVvAo+xXqSyk=";
};
buildInputs = [ gtk3 ];
nativeBuildInputs = [
pkg-config
wrapGAppsHook3
];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
inherit (src.meta) homepage;
description = "Monitoring software for AMD Zen-based CPUs";
mainProgram = "zenmonitor";
license = licenses.mit;
platforms = [
"i686-linux"
"x86_64-linux"
];
maintainers = with maintainers; [
alexbakker
artturin
];
};
}