nixpkgs/pkgs/tools/misc/vsh/default.nix

31 lines
762 B
Nix
Raw Normal View History

2020-10-03 19:52:10 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "vsh";
2021-02-06 19:13:35 +00:00
version = "0.9.0";
2020-10-03 19:52:10 +00:00
src = fetchFromGitHub {
owner = "fishi0x01";
repo = "vsh";
rev = "v${version}";
2021-02-06 19:13:35 +00:00
sha256 = "1f6szcdakfx3zap1zpkrcs134plv7vnyilzcxs5jbhrrbr6q1807";
2020-10-03 19:52:10 +00:00
};
2021-02-06 19:13:35 +00:00
vendorSha256 = "0a2kjql4ibglxkq5dgzr2sxxxm38nf83s4rsk2gd1cf7v0flr02j";
# vendor dir in vsh repo is incomplete
deleteVendor = true;
runVend = true;
2020-10-03 19:52:10 +00:00
# make sure version gets set at compile time
buildFlagsArray = [ "-ldflags=-s -w -X main.vshVersion=v${version}" ];
meta = with lib; {
description = "HashiCorp Vault interactive shell";
homepage = "https://github.com/fishi0x01/vsh";
license = licenses.mit;
maintainers = with maintainers; [ fishi0x01 ];
};
}