nixpkgs/pkgs/tools/security/vault/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, go, gox, removeReferencesTo }:
2016-06-04 22:13:30 +01:00
stdenv.mkDerivation rec {
2016-06-04 22:13:30 +01:00
name = "vault-${version}";
version = "1.1.3";
2016-06-04 22:13:30 +01:00
src = fetchFromGitHub {
owner = "hashicorp";
repo = "vault";
2016-09-23 18:34:51 +01:00
rev = "v${version}";
sha256 = "0dylwvs95crvn1p7pbyzib979rxzp4ivzvi5k4f5ivp4ygnp597s";
2016-09-23 18:34:51 +01:00
};
nativeBuildInputs = [ go gox removeReferencesTo ];
2018-08-11 13:47:54 +01:00
preBuild = ''
2017-08-29 17:30:35 +01:00
patchShebangs ./
substituteInPlace scripts/build.sh --replace 'git rev-parse HEAD' 'echo ${src.rev}'
2017-12-04 08:13:07 +00:00
sed -i s/'^GIT_DIRTY=.*'/'GIT_DIRTY="+NixOS"'/ scripts/build.sh
2018-08-11 13:47:54 +01:00
mkdir -p .git/hooks src/github.com/hashicorp
ln -s $(pwd) src/github.com/hashicorp/vault
2018-08-11 13:47:54 +01:00
export GOPATH=$(pwd)
export GOCACHE="$TMPDIR/go-cache"
2016-09-23 18:34:51 +01:00
'';
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} '{}' +
echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault
2016-12-11 13:59:14 +00:00
'';
2016-09-23 18:34:51 +01:00
meta = with stdenv.lib; {
homepage = https://www.vaultproject.io;
description = "A tool for managing secrets";
2017-02-16 19:47:30 +00:00
platforms = platforms.linux ++ platforms.darwin;
2016-09-23 18:34:51 +01:00
license = licenses.mpl20;
2018-08-11 13:47:54 +01:00
maintainers = with maintainers; [ rushmorem lnl7 offline pradeepchhetri ];
2016-06-04 22:13:30 +01:00
};
}