mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
natscli: init at 0.0.22
This commit is contained in:
parent
3c3437afa6
commit
460af4c14b
25
pkgs/tools/system/natscli/default.nix
Normal file
25
pkgs/tools/system/natscli/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "natscli";
|
||||
version = "0.0.22";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nats-io";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1qc6lpgl878kc316z10x59px6jyfzdwsj7fdr8k4ayln0lplvbq3";
|
||||
};
|
||||
|
||||
vendorSha256 = "1a9d7hqj43qdh0h7pc5wckqshi8lacf6m2107wymzzz62j1msy26";
|
||||
|
||||
meta = with lib; {
|
||||
description = "NATS Command Line Interface";
|
||||
homepage = "https://github.com/nats-io/natscli";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -6047,6 +6047,8 @@ in
|
|||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
||||
natscli = callPackage ../tools/system/natscli { };
|
||||
|
||||
nbench = callPackage ../tools/misc/nbench { };
|
||||
|
||||
ncrack = callPackage ../tools/security/ncrack { };
|
||||
|
|
Loading…
Reference in a new issue