vault: 0.6.0 -> 0.6.1

This commit is contained in:
rushmorem 2016-09-23 19:34:51 +02:00
parent ac8206e31d
commit c2cae61392
1 changed files with 15 additions and 4 deletions

View File

@ -2,15 +2,26 @@
buildGoPackage rec {
name = "vault-${version}";
version = "0.6.0";
rev = "v${version}";
version = "0.6.1";
goPackagePath = "github.com/hashicorp/vault";
src = fetchFromGitHub {
inherit rev;
owner = "hashicorp";
repo = "vault";
sha256 = "0byb91nqrhl7w0rq0ilml1ybamh8w1qga47a790kggsmjhcj9ybx";
rev = "v${version}";
sha256 = "06xf2dpn0q398qb6wbh9j1wjl5smqq9nrrn2039g48haqm8853jx";
};
buildFlagsArray = ''
-ldflags=
-X github.com/hashicorp/vault/version.GitCommit=${version}
'';
meta = with stdenv.lib; {
homepage = https://www.vaultproject.io;
description = "A tool for managing secrets";
license = licenses.mpl20;
maintainers = [ maintainers.rushmorem ];
};
}