Unverified Commit dc2fb220 authored by Theodore Ni's avatar Theodore Ni Committed by GitHub
Browse files

macmon: init at v0.3.3 (#354348)

parents 460abae3 2e0d9109
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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;
+27 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}