mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
54 lines
1.6 KiB
Nix
54 lines
1.6 KiB
Nix
{ lib, stdenv, fetchurl, unzip }:
|
|
|
|
let
|
|
version = "1.7.1";
|
|
|
|
sources = let
|
|
base = "https://releases.hashicorp.com/vault/${version}";
|
|
in {
|
|
x86_64-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_amd64.zip";
|
|
sha256 = "021qa8jcqwy27q83lvamvv5zqnkwk5y0jsb8al5yxpgzxqnmsyb1";
|
|
};
|
|
i686-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_386.zip";
|
|
sha256 = "02hhxpa8craa91nfgvwziswisfdnqw4gbwrxyxr753v1y00y1sz8";
|
|
};
|
|
x86_64-darwin = fetchurl {
|
|
url = "${base}/vault_${version}_darwin_amd64.zip";
|
|
sha256 = "141zzfwrjdjv8ymrdc4mxs2f4cphdir4xjaa40s571ri38in33zh";
|
|
};
|
|
aarch64-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_arm64.zip";
|
|
sha256 = "1plrmmy86zb2ij49dk2mwn364i2n83ch4gjz5pln2d4wjx21gpaq";
|
|
};
|
|
};
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "vault-bin";
|
|
inherit version;
|
|
|
|
src = sources.${stdenv.hostPlatform.system} or (throw "unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
nativeBuildInputs = [ 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
|
|
|
|
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 ];
|
|
};
|
|
}
|