nixpkgs/pkgs/tools/system/nsc/default.nix

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

51 lines
1.1 KiB
Nix
Raw Normal View History

2023-02-19 22:45:31 +01:00
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
2023-02-23 19:16:40 +01:00
, installShellFiles
2023-02-19 22:45:31 +01:00
}:
buildGoModule rec {
pname = "nsc";
2023-09-30 02:07:39 +02:00
version = "2.8.1";
2023-02-19 22:45:31 +01:00
src = fetchFromGitHub {
owner = "nats-io";
repo = pname;
rev = "v${version}";
2023-09-30 02:07:39 +02:00
hash = "sha256-kNfA/MQuXauQPWQhUspreqo4oOKb+qBqh9NdmQM1Q+A=";
2023-02-19 22:45:31 +01:00
};
ldflags = [
"-s"
"-w"
"-X main.version=v${version}"
"-X main.builtBy=nixpkgs"
];
2023-09-30 02:07:39 +02:00
vendorHash = "sha256-8cTegiNVtGSZdf9O+KVoOgnjjMIv8w7YBSkFhk7gHfk=";
2023-02-19 22:45:31 +01:00
2023-02-23 19:16:40 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd nsc \
--bash <($out/bin/nsc completion bash) \
--fish <($out/bin/nsc completion fish) \
--zsh <($out/bin/nsc completion zsh)
'';
2023-02-19 22:45:31 +01:00
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;
};
}