lol

Merge pull request #44898 from LnL7/vault-0.10.4

vault: 0.10.3 -> 0.10.4

authored by

Sarah Brofeldt and committed by
GitHub
0e7076ec bb3f7d14

+6 -8
+6 -8
pkgs/tools/security/vault/default.nix
··· 9 9 }; 10 10 in stdenv.mkDerivation rec { 11 11 name = "vault-${version}"; 12 - version = "0.10.3"; 12 + version = "0.10.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "hashicorp"; 16 16 repo = "vault"; 17 17 rev = "v${version}"; 18 - sha256 = "16sndzbfciw4bccxm7sc83y2pma2bgsmc1kqyb2hp0jsdy4rl3k4"; 18 + sha256 = "1f11arvj7zp8wwkvv3nn7kyga0ci8psdif6djrnzwjksskdgdbx5"; 19 19 }; 20 20 21 21 nativeBuildInputs = [ go gox removeReferencesTo ]; 22 22 23 - buildPhase = '' 23 + preBuild = '' 24 24 patchShebangs ./ 25 25 substituteInPlace scripts/build.sh --replace 'git rev-parse HEAD' 'echo ${src.rev}' 26 26 sed -i s/'^GIT_DIRTY=.*'/'GIT_DIRTY="+NixOS"'/ scripts/build.sh 27 27 28 - mkdir -p src/github.com/hashicorp 28 + mkdir -p .git/hooks src/github.com/hashicorp 29 29 ln -s $(pwd) src/github.com/hashicorp/vault 30 30 31 - mkdir -p .git/hooks 32 - 33 - GOPATH=$(pwd) make 31 + export GOPATH=$(pwd) 34 32 ''; 35 33 36 34 installPhase = '' ··· 47 45 description = "A tool for managing secrets"; 48 46 platforms = platforms.linux ++ platforms.darwin; 49 47 license = licenses.mpl20; 50 - maintainers = with maintainers; [ rushmorem offline pradeepchhetri ]; 48 + maintainers = with maintainers; [ rushmorem lnl7 offline pradeepchhetri ]; 51 49 }; 52 50 }