nats-top: init at 0.4.0
This commit is contained in:
parent
460af4c14b
commit
858f5740a1
25
pkgs/tools/system/nats-top/default.nix
Normal file
25
pkgs/tools/system/nats-top/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6047,6 +6047,8 @@ in
|
|||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nats-top = callPackage ../tools/system/nats-top { };
|
||||||
|
|
||||||
natscli = callPackage ../tools/system/natscli { };
|
natscli = callPackage ../tools/system/natscli { };
|
||||||
|
|
||||||
nbench = callPackage ../tools/misc/nbench { };
|
nbench = callPackage ../tools/misc/nbench { };
|
||||||
|
Loading…
Reference in New Issue
Block a user