Revert "vault: init at v0.1.2"

This reverts commit 41bbb904eb.
This commit is contained in:
Alexander V. Nikolaev 2015-08-10 14:18:15 +03:00
parent 770b5411f8
commit 2c2a4cd099
2 changed files with 0 additions and 50 deletions

View File

@ -1,48 +0,0 @@
{ stdenv, fetchgit, go, gox }:
let
name = "vault";
version = "0.1.2";
namespace = "github.com/hashicorp/vault";
in
stdenv.mkDerivation rec {
name = "vault-${version}";
rev = "v${version}";
src = fetchgit {
url = "https://github.com/hashicorp/vault";
sha256 = "a4267105dab56c6d0571f69ea0abc167c5debd3b6c0795b8b69e15a285e12f01";
rev = "refs/tags/${rev}";
};
buildInputs = [ go gox ];
buildPhase = ''
mkdir -p "$(dirname Godeps/_workspace/src/${namespace})"
ln -sf $src "Godeps/_workspace/src/${namespace}"
export GOPATH=$PWD/Godeps/_workspace
XC_OS=$(go env GOOS)
XC_ARCH=$(go env GOARCH)
mkdir -p bin/
gox \
-os "$XC_OS" \
-arch "$XC_ARCH" \
-ldflags "-X github.com/hashicorp/vault/cli.GitCommit ${rev}" \
-output $PWD/bin/vault \
-verbose \
.
'';
installPhase = ''
mkdir -p $out/bin
cp bin/vault $out/bin/vault
'';
meta = with stdenv.lib; {
homepage = "https://www.vaultproject.io";
description = "A tool for securely accessing secrets";
maintainers = with maintainers; [ avnik ];
license = licenses.mit ;
platforms = platforms.all;
};
}

View File

@ -15032,8 +15032,6 @@ let
utf8proc = callPackage ../development/libraries/utf8proc { };
vault = callPackage ../servers/vault {};
vbam = callPackage ../misc/emulators/vbam {
inherit (xlibs) libpthreadstubs;
};