evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / mactop / package.nix
blob660e642a33f6129022e424ec857157cf26a8e0ff
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "mactop";
9   version = "0.1.9";
11   src = fetchFromGitHub {
12     owner = "context-labs";
13     repo = "mactop";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-r9je+oeedQJsFBWWbOUcUls/EX0JZveUkmsXXtC8O0Q=";
16   };
18   vendorHash = "sha256-/KecVx4Gp776t8gFSO29E1q9v29nwrKIWZYCpj7IlSo=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   meta = {
26     description = "Terminal-based monitoring tool 'top' designed to display real-time metrics for Apple Silicon chips";
27     homepage = "https://github.com/context-labs/mactop";
28     changelog = "https://github.com/context-labs/mactop/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
29     license = lib.licenses.mit;
30     maintainers = with lib.maintainers; [ natsukium ];
31     mainProgram = "mactop";
32     platforms = [ "aarch64-darwin" ];
33   };