mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
5416a5bb13
vault{,-bin}: 1.7.3 -> 1.8.0
57 lines
1.8 KiB
Nix
57 lines
1.8 KiB
Nix
{ lib, stdenv, fetchurl, unzip, makeWrapper, gawk, glibc }:
|
|
|
|
let
|
|
version = "1.8.0";
|
|
|
|
sources = let
|
|
base = "https://releases.hashicorp.com/vault/${version}";
|
|
in {
|
|
x86_64-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_amd64.zip";
|
|
sha256 = "sha256-H+kPDE8xuu2lgENf4t+vCb+Tni+ChkB8K5ZEgIY3Jyo=";
|
|
};
|
|
i686-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_386.zip";
|
|
sha256 = "19c7d7yr5nm1xgrkh46pcgwwxa6iic6is06n343qaxcj0dfg43kn";
|
|
};
|
|
x86_64-darwin = fetchurl {
|
|
url = "${base}/vault_${version}_darwin_amd64.zip";
|
|
sha256 = "0zql0r6gmq0yqb1cbpjgwsg6cky9y43n5gsvijp6snhnp86bicdr";
|
|
};
|
|
aarch64-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_arm64.zip";
|
|
sha256 = "1ajkgkanq8ijcxbb5zbn9z25r0v7qcq13ivjqr0x7ql5bxm3xfmc";
|
|
};
|
|
};
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "vault-bin";
|
|
inherit version;
|
|
|
|
src = sources.${stdenv.hostPlatform.system} or (throw "unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
nativeBuildInputs = [ makeWrapper unzip ];
|
|
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share/bash-completion/completions
|
|
mv vault $out/bin
|
|
echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault
|
|
'' + lib.optionalString stdenv.isLinux ''
|
|
wrapProgram $out/bin/vault \
|
|
--prefix PATH : ${lib.makeBinPath [ gawk glibc ]}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.vaultproject.io";
|
|
description = "A tool for managing secrets, this binary includes the UI";
|
|
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; teams.serokell.members ++ [ offline psyanticy Chili-Man ];
|
|
};
|
|
}
|