3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/nats-top/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
575 B
Nix
Raw Normal View History

2021-04-05 13:00:16 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "nats-top";
2022-03-23 22:57:25 +00:00
version = "0.5.0";
2021-04-05 13:00:16 +01:00
src = fetchFromGitHub {
owner = "nats-io";
repo = pname;
rev = "v${version}";
2022-03-23 22:57:25 +00:00
sha256 = "sha256-IZQDwopFAXPT0V+TTiJk6+j/KhLTA3g4kN1j1PVlNt0=";
2021-04-05 13:00:16 +01:00
};
2022-03-23 22:57:25 +00:00
vendorSha256 = "sha256-cBCR/OXUOa+Lh8UvL/VraDAW0hGGwV7teyvdswZQ5Lo=";
2021-04-05 13:00:16 +01:00
meta = with lib; {
description = "top-like tool for monitoring NATS servers";
homepage = "https://github.com/nats-io/nats-top";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}