29 lines
772 B
Nix
29 lines
772 B
Nix
{ buildGoModule, lib, fetchFromGitHub }:
|
|
buildGoModule rec {
|
|
pname = "aws-vault";
|
|
version = "5.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "99designs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0qmxq2jd7dg5fp9giw6xd96q2l2df3sxksc0rwmrgx2rjx6iyivn";
|
|
};
|
|
|
|
vendorSha256 = "0jlraq480llamns6yw8yjkzxsndyqiyzy120djni8sw5h0bz65j7";
|
|
subPackages = [ "." ];
|
|
|
|
# set the version. see: aws-vault's Makefile
|
|
buildFlagsArray = ''
|
|
-ldflags=
|
|
-X main.Version=v${version}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"A vault for securely storing and accessing AWS credentials in development environments";
|
|
homepage = "https://github.com/99designs/aws-vault";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
};
|
|
} |