nixpkgs-suyu/pkgs/tools/security/vault/vault-bin.nix

51 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip }:
let
2020-11-21 05:20:00 +01:00
version = "1.6.0";
sources = let
base = "https://releases.hashicorp.com/vault/${version}";
in {
2019-08-13 23:52:01 +02:00
x86_64-linux = fetchurl {
url = "${base}/vault_${version}_linux_amd64.zip";
2020-11-21 05:20:00 +01:00
sha256 = "0fay6bw31x9kxmc52sh5qp63nfkwji74fbnlx8pj3smz3qnqw143";
};
2019-08-13 23:52:01 +02:00
i686-linux = fetchurl {
url = "${base}/vault_${version}_linux_386.zip";
2020-11-21 05:20:00 +01:00
sha256 = "0bjks9lpgl39cq55c9cyc0glhmyxzs37a2an8ynzza94gv5mgcxa";
};
2019-08-13 23:52:01 +02:00
x86_64-darwin = fetchurl {
url = "${base}/vault_${version}_darwin_amd64.zip";
2020-11-21 05:20:00 +01:00
sha256 = "0hl1k35x78y0hi3y5xjnzby1ygisqjyvdak7s61m9f363nsr1shh";
};
2019-08-13 23:52:01 +02:00
aarch64-linux = fetchurl {
url = "${base}/vault_${version}_linux_arm64.zip";
2020-11-21 05:20:00 +01:00
sha256 = "018a5i14x6phhx1axvx0bvqn4ggsimfizs48xbmykgiyfmzkrwgz";
};
};
in stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "vault-bin";
inherit version;
2019-08-13 23:52:01 +02:00
src = sources.${stdenv.hostPlatform.system} or (throw "unsupported system: ${stdenv.hostPlatform.system}");
nativeBuildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
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
'';
meta = with stdenv.lib; {
homepage = "https://www.vaultproject.io";
description = "A tool for managing secrets, this binary includes the UI";
2020-11-21 05:20:00 +01:00
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
license = licenses.mpl20;
2019-11-25 17:23:59 +01:00
maintainers = with maintainers; [ offline psyanticy mkaito ];
};
}