nats-top: init at 0.4.0

This commit is contained in:
Fabian Affolter 2021-04-05 14:00:16 +02:00
parent 460af4c14b
commit 858f5740a1
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "nats-top";
version = "0.4.0";
src = fetchFromGitHub {
owner = "nats-io";
repo = pname;
rev = "v${version}";
sha256 = "0b1hpnq8m1xfrn58ammmnx6lmhk319m8z4xjxgckz7wvy2fbzw0n";
};
vendorSha256 = "1a48p9gx5zdc340ma6cqakhi6f3lw9b0kz2597j1jcsk2qb7s581";
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 ];
};
}

View file

@ -6047,6 +6047,8 @@ in
pythonPackages = python3Packages;
};
nats-top = callPackage ../tools/system/nats-top { };
natscli = callPackage ../tools/system/natscli { };
nbench = callPackage ../tools/misc/nbench { };