aws-vault: 4.5.1 to 5.3.2 (#80949)

The aws-vault development has switched to using go modules.
Therefore this package has also been updated to use `buildGoModule`
helper.
This commit is contained in:
Suraj Barkale 2020-02-24 23:08:05 +11:00 committed by GitHub
parent 987d6c216f
commit 4aaab192a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,18 @@
{ buildGoPackage, lib, fetchFromGitHub }:
buildGoPackage rec {
{ buildGoModule, lib, fetchFromGitHub }:
buildGoModule rec {
pname = "aws-vault";
version = "4.5.1";
goPackagePath = "github.com/99designs/${pname}";
version = "5.3.2";
src = fetchFromGitHub {
owner = "99designs";
repo = pname;
rev = "v${version}";
sha256 = "0y64fx15p9ls829lif7c0jaxyclzpnr8l5cyw25q545878dzmcs5";
sha256 = "04dyibcaijv5011laycf39m4gvprvvsn5zkxslyih1kqd170w3wg";
};
modSha256 = "1d3hjfmfmlpw2scfyn597zkzz864w97p0wrsxjp49m9mi0pgmhq9";
subPackages = [ "." ];
# set the version. see: aws-vault's Makefile
buildFlagsArray = ''
-ldflags=
@ -19,10 +20,10 @@ buildGoPackage rec {
'';
meta = with lib; {
description = "A vault for securely storing and accessing AWS credentials in development environments";
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 ];
};
}