58 lines
1.8 KiB
Nix
58 lines
1.8 KiB
Nix
{ lib, stdenv, fetchurl, unzip, makeWrapper, gawk, glibc }:
|
|
|
|
let
|
|
version = "1.8.2";
|
|
|
|
sources = let
|
|
base = "https://releases.hashicorp.com/vault/${version}";
|
|
in {
|
|
x86_64-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_amd64.zip";
|
|
sha256 = "sha256-10ck1swivx4cfFGQCbAXaAms9vHCDuVhB94Mq1TNhGM=";
|
|
};
|
|
i686-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_386.zip";
|
|
sha256 = "0v8l056xs88mjpcfpi9k8chv0zk7lf80gkj580z3d37h2yr2b1gg";
|
|
};
|
|
x86_64-darwin = fetchurl {
|
|
url = "${base}/vault_${version}_darwin_amd64.zip";
|
|
sha256 = "1xabbndnx85zbhbwid30q0jii41hmwwlqrxz4a0rllqshvmq4fg3";
|
|
};
|
|
aarch64-linux = fetchurl {
|
|
url = "${base}/vault_${version}_linux_arm64.zip";
|
|
sha256 = "00p2540bdhw46licab401vbwdyvp1hkngssx6nh99igj14sl60qa";
|
|
};
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|