Merge pull request #217235 from cbrewster/nsc-init-2.7.6

nsc: init at 2.7.6
This commit is contained in:
Anderson Torres 2023-02-22 01:26:17 -03:00 committed by GitHub
commit 1016916d98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 48 additions and 0 deletions

View file

@ -2467,6 +2467,12 @@
githubId = 3471749;
name = "Claudio Bley";
};
cbrewster = {
email = "cbrewster@hey.com";
github = "cbrewster";
githubId = 9086315;
name = "Connor Brewster";
};
cburstedde = {
email = "burstedde@ins.uni-bonn.de";
github = "cburstedde";

View file

@ -0,0 +1,40 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "nsc";
version = "2.7.6";
src = fetchFromGitHub {
owner = "nats-io";
repo = pname;
rev = "v${version}";
hash = "sha256-aieUCQ5JVJQs4RoTGaXwfTv3xC1ozSsQyfCLsD245go=";
};
ldflags = [
"-s"
"-w"
"-X main.version=v${version}"
"-X main.builtBy=nixpkgs"
];
vendorHash = "sha256-gDwppx0ORG+pXzTdGtUVbiFyTD/P7avt+/V89Gl0QYY=";
preCheck = ''
# Tests attempt to write to the home directory.
export HOME=$(mktemp -d)
'';
meta = {
description = "A tool for creating NATS account and user access configurations";
homepage = "https://github.com/nats-io/nsc";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ cbrewster ];
mainProgram = "nsc";
broken = stdenv.isDarwin;
};
}

View file

@ -9213,6 +9213,8 @@ with pkgs;
natscli = callPackage ../tools/system/natscli { };
nsc = callPackage ../tools/system/nsc { };
nbench = callPackage ../tools/misc/nbench { };
nbtscanner = callPackage ../tools/security/nbtscanner {