depot/third_party/nixpkgs/pkgs/tools/misc/vsh/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

26 lines
657 B
Nix

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "vsh";
version = "0.12.2";
src = fetchFromGitHub {
owner = "fishi0x01";
repo = "vsh";
rev = "v${version}";
sha256 = "13qa9r7kij6aqhackzmsn38vyhmajgmhflnrd9rarfhhyg6ldv4z";
};
# vendor directory is part of repository
vendorHash = null;
# make sure version gets set at compile time
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 ];
};
}