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

27 lines
659 B
Nix
Raw Normal View History

2020-10-03 22:52:10 +03:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "vsh";
2021-10-06 22:10:35 +03:00
version = "0.12.1";
2020-10-03 22:52:10 +03:00
src = fetchFromGitHub {
owner = "fishi0x01";
repo = "vsh";
rev = "v${version}";
2021-10-06 22:10:35 +03:00
sha256 = "0skd16j969mb2kgq503wskaw8clyhkw135ny2nsqv5j2zjpr71ap";
2020-10-03 22:52:10 +03:00
};
2021-02-24 13:52:10 +03:00
# vendor directory is part of repository
vendorSha256 = null;
2020-10-03 22:52:10 +03:00
# make sure version gets set at compile time
2021-08-26 09:45:51 +03:00
ldflags = [ "-s" "-w" "-X main.vshVersion=v${version}" ];
2020-10-03 22:52:10 +03:00
meta = with lib; {
description = "HashiCorp Vault interactive shell";
homepage = "https://github.com/fishi0x01/vsh";
license = licenses.mit;
maintainers = with maintainers; [ fishi0x01 ];
};
}