macmon: modernize, add meta.mainProgram (#479013)

This commit is contained in:
Gaétan Lepage
2026-01-12 09:29:02 +00:00
committed by GitHub
+12 -4
View File
@@ -2,26 +2,34 @@
lib,
rustPlatform,
fetchFromGitHub,
versionCheckHook,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "macmon";
version = "0.6.1";
src = fetchFromGitHub {
owner = "vladkens";
repo = "macmon";
rev = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-GiSF5PBRUcKZzd9vWf9MmKKZbtqchnu0DjFgbXmp7bg=";
};
cargoHash = "sha256-b9CpHSC3/kj7lHs+QhDqnRZfda9rtJJEs3j24NDZSPQ=";
nativeInstallCheckInputs = [
versionCheckHook
];
doInstallCheck = true;
meta = {
homepage = "https://github.com/vladkens/macmon";
description = "Sudoless performance monitoring for Apple Silicon processors";
homepage = "https://github.com/vladkens/macmon";
changelog = "https://github.com/vladkens/macmon/releases/tag/${finalAttrs.src.tag}";
platforms = [ "aarch64-darwin" ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ schrobingus ];
mainProgram = "macmon";
};
}
})