Merge pull request #67606 from endocrimes/r-vault-1.2.2
vault: 1.0.2 -> 1.2.2
This commit is contained in:
commit
8d1510abfb
@ -70,7 +70,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
storageBackend = mkOption {
|
storageBackend = mkOption {
|
||||||
type = types.enum [ "inmem" "file" "consul" "zookeeper" "s3" "azure" "dynamodb" "etcd" "mssql" "mysql" "postgresql" "swift" "gcs" ];
|
type = types.enum [ "inmem" "file" "consul" "zookeeper" "s3" "azure" "dynamodb" "etcd" "mssql" "mysql" "postgresql" "swift" "gcs" "raft" ];
|
||||||
default = "inmem";
|
default = "inmem";
|
||||||
description = "The name of the type of storage backend";
|
description = "The name of the type of storage backend";
|
||||||
};
|
};
|
||||||
|
@ -1,36 +1,25 @@
|
|||||||
{ stdenv, fetchFromGitHub, go, gox, removeReferencesTo }:
|
{ stdenv, fetchFromGitHub, buildGoModule }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
buildGoModule rec {
|
||||||
name = "vault-${version}";
|
name = "vault-${version}";
|
||||||
version = "1.1.3";
|
version = "1.2.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "hashicorp";
|
owner = "hashicorp";
|
||||||
repo = "vault";
|
repo = "vault";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0dylwvs95crvn1p7pbyzib979rxzp4ivzvi5k4f5ivp4ygnp597s";
|
sha256 = "1xljm7xmb4ldg3wx8s9kw1spffg4ywk4r1jqfa743czd2xxmqavl";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ go gox removeReferencesTo ];
|
modSha256 = "13pr3piv6hrsc562qagpn1h5wckiziyfqraj13172hdglz3n2i7q";
|
||||||
|
|
||||||
preBuild = ''
|
buildFlagsArray = [
|
||||||
patchShebangs ./
|
"-tags='vault'"
|
||||||
substituteInPlace scripts/build.sh --replace 'git rev-parse HEAD' 'echo ${src.rev}'
|
"-ldflags=\"-X github.com/hashicorp/vault/sdk/version.GitCommit='v${version}'\""
|
||||||
sed -i s/'^GIT_DIRTY=.*'/'GIT_DIRTY="+NixOS"'/ scripts/build.sh
|
];
|
||||||
|
|
||||||
mkdir -p .git/hooks src/github.com/hashicorp
|
|
||||||
ln -s $(pwd) src/github.com/hashicorp/vault
|
|
||||||
|
|
||||||
export GOPATH=$(pwd)
|
|
||||||
export GOCACHE="$TMPDIR/go-cache"
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/bin $out/share/bash-completion/completions
|
|
||||||
|
|
||||||
cp pkg/*/* $out/bin/
|
|
||||||
find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
|
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/bash-completion/completions
|
||||||
echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault
|
echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user