2017-07-02 02:39:55 +02:00
|
|
|
{ stdenv, fetchFromGitHub, go, gox, removeReferencesTo }:
|
2016-06-04 23:13:30 +02:00
|
|
|
|
2018-12-03 00:37:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-04 23:13:30 +02:00
|
|
|
name = "vault-${version}";
|
2019-05-13 13:00:39 +02:00
|
|
|
version = "1.1.2";
|
2016-06-04 23:13:30 +02:00
|
|
|
|
2016-06-06 12:56:28 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashicorp";
|
|
|
|
repo = "vault";
|
2016-09-23 19:34:51 +02:00
|
|
|
rev = "v${version}";
|
2019-05-13 13:00:39 +02:00
|
|
|
sha256 = "1916zqmh4cam9nw3k95wiqizlpkbbm5qhfz4lblqba8pzc2y9v32";
|
2016-09-23 19:34:51 +02:00
|
|
|
};
|
|
|
|
|
2017-07-02 02:39:55 +02:00
|
|
|
nativeBuildInputs = [ go gox removeReferencesTo ];
|
2017-06-29 04:02:13 +02:00
|
|
|
|
2018-08-11 14:47:54 +02:00
|
|
|
preBuild = ''
|
2017-08-29 18:30:35 +02:00
|
|
|
patchShebangs ./
|
2017-06-29 04:02:13 +02:00
|
|
|
substituteInPlace scripts/build.sh --replace 'git rev-parse HEAD' 'echo ${src.rev}'
|
2017-12-04 09:13:07 +01:00
|
|
|
sed -i s/'^GIT_DIRTY=.*'/'GIT_DIRTY="+NixOS"'/ scripts/build.sh
|
2017-06-29 04:02:13 +02:00
|
|
|
|
2018-08-11 14:47:54 +02:00
|
|
|
mkdir -p .git/hooks src/github.com/hashicorp
|
2017-06-29 04:02:13 +02:00
|
|
|
ln -s $(pwd) src/github.com/hashicorp/vault
|
|
|
|
|
2018-08-11 14:47:54 +02:00
|
|
|
export GOPATH=$(pwd)
|
2019-03-10 22:05:44 +01:00
|
|
|
export GOCACHE="$TMPDIR/go-cache"
|
2016-09-23 19:34:51 +02:00
|
|
|
'';
|
|
|
|
|
2017-06-29 04:02:13 +02:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin $out/share/bash-completion/completions
|
2017-07-02 02:39:55 +02:00
|
|
|
|
2017-06-29 04:02:13 +02:00
|
|
|
cp pkg/*/* $out/bin/
|
2017-07-02 02:39:55 +02:00
|
|
|
find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
|
|
|
|
|
2018-12-03 00:37:56 +01:00
|
|
|
echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault
|
2016-12-11 14:59:14 +01:00
|
|
|
'';
|
|
|
|
|
2016-09-23 19:34:51 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://www.vaultproject.io;
|
|
|
|
description = "A tool for managing secrets";
|
2017-02-16 20:47:30 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-09-23 19:34:51 +02:00
|
|
|
license = licenses.mpl20;
|
2018-08-11 14:47:54 +02:00
|
|
|
maintainers = with maintainers; [ rushmorem lnl7 offline pradeepchhetri ];
|
2016-06-04 23:13:30 +02:00
|
|
|
};
|
|
|
|
}
|