From 5106cce978472c09277608cc88f444486fa9acd5 Mon Sep 17 00:00:00 2001 From: schrobingus Date: Thu, 7 Nov 2024 13:53:46 -0800 Subject: [PATCH 1/2] maintainers: add schrobingus --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index a844c0b45998..f44e2b0485be 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -19517,6 +19517,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; From 2e0d910966964407c76be410c1685e0cf9f1d1c5 Mon Sep 17 00:00:00 2001 From: schrobingus Date: Thu, 7 Nov 2024 14:01:14 -0800 Subject: [PATCH 2/2] macmon: init at v0.3.3 --- pkgs/by-name/ma/macmon/package.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pkgs/by-name/ma/macmon/package.nix diff --git a/pkgs/by-name/ma/macmon/package.nix b/pkgs/by-name/ma/macmon/package.nix new file mode 100644 index 000000000000..3b63efd27bf6 --- /dev/null +++ b/pkgs/by-name/ma/macmon/package.nix @@ -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 ]; + }; +}