nixpkgs/pkgs/tools/admin/ssmsh/default.nix

27 lines
664 B
Nix
Raw Normal View History

2020-11-07 16:39:00 +00:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ssmsh";
2020-11-15 18:20:38 +00:00
version = "1.4.4";
2020-11-07 16:39:00 +00:00
src = fetchFromGitHub {
owner = "bwhaley";
repo = pname;
rev = "v${version}";
2020-11-15 18:20:38 +00:00
sha256 = "0mgx4q21f6rxih79l0hwgzwafxviz5a33dpvc5k0z172sfw0dmj1";
2020-11-07 16:39:00 +00:00
};
2020-11-15 18:20:38 +00:00
vendorSha256 = "147f02bl3sf073dy2ximbavdcbphdn7djgisla1cyyy4ng6dhf7f";
2020-11-07 16:39:00 +00:00
doCheck = true;
buildFlagsArray = [ "-ldflags=-w -s -X main.Version=${version}" ];
meta = with stdenv.lib; {
homepage = "https://github.com/bwhaley/ssmsh";
description = "An interactive shell for AWS Parameter Store";
license = licenses.mit;
maintainers = with maintainers; [ dbirks ];
};
}