1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

macmon: init at v0.3.3 (#354348)

This commit is contained in:
Theodore Ni 2024-11-13 01:27:15 -08:00 committed by GitHub
commit dc2fb220b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 34 additions and 0 deletions

View file

@ -19630,6 +19630,13 @@
githubId = 5104601;
name = "schnusch";
};
schrobingus = {
email = "brent.monning.jr@gmail.com";
name = "Brent Monning";
github = "schrobingus";
githubId = 72168352;
matrix = "@schrobingus:matrix.org";
};
Schweber = {
github = "Schweber";
githubId = 64630479;

View file

@ -0,0 +1,27 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "macmon";
version = "0.3.3";
src = fetchFromGitHub {
owner = "vladkens";
repo = "macmon";
rev = "v${version}";
hash = "sha256-COpEjK1LUwGzhSgD09D4gx+MtS2hT0qt06rTPT8JQiQ=";
};
cargoHash = "sha256-DTkpFGl8kTWttFGKTCpny2L0IRrCgpnnXaKIFoxWrW4=";
meta = {
homepage = "https://github.com/vladkens/macmon";
description = "Sudoless performance monitoring for Apple Silicon processors";
platforms = [ "aarch64-darwin" ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ schrobingus ];
};
}