nixpkgs/pkgs/tools/networking/boundary/default.nix

67 lines
2.0 KiB
Nix
Raw Normal View History

2021-02-01 13:13:31 +00:00
{ stdenv, lib, fetchzip }:
stdenv.mkDerivation rec {
pname = "boundary";
2021-08-06 09:29:37 +00:00
version = "0.5.0";
2021-02-01 13:13:31 +00:00
src =
let
inherit (stdenv.hostPlatform) system;
selectSystem = attrs: attrs.${system} or (throw "Unsupported system: ${system}");
suffix = selectSystem {
x86_64-linux = "linux_amd64";
aarch64-linux = "linux_arm64";
x86_64-darwin = "darwin_amd64";
};
sha256 = selectSystem {
2021-08-06 09:29:37 +00:00
x86_64-linux = "sha256-5ggbM6Ev4TkpyG0yPGCh22QSqefyO32Q2k2kthHgkTc=";
aarch64-linux = "sha256-oboMI2OxemIEX+IcBkN/DoACGXzyxsxHg4OD3ugbLR0=";
x86_64-darwin = "sha256-dpSI7I37vChljHSV0mwUDymngIFoQ5sWAszJ9MePMG8=";
};
in
fetchzip {
url = "https://releases.hashicorp.com/boundary/${version}/boundary_${version}_${suffix}.zip";
inherit sha256;
};
2021-02-01 13:13:31 +00:00
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
2021-02-01 13:13:31 +00:00
install -D boundary $out/bin/boundary
runHook postInstall
2021-02-01 13:13:31 +00:00
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/boundary --help
$out/bin/boundary version
runHook postInstallCheck
'';
2021-02-01 13:13:31 +00:00
dontPatchELF = true;
dontPatchShebangs = true;
2021-02-02 14:13:25 +00:00
passthru.updateScript = ./update.sh;
2021-02-01 13:13:31 +00:00
meta = with lib; {
homepage = "https://boundaryproject.io/";
changelog = "https://github.com/hashicorp/boundary/blob/v${version}/CHANGELOG.md";
description = "Enables identity-based access management for dynamic infrastructure";
longDescription = ''
Boundary provides a secure way to access hosts and critical systems
without having to manage credentials or expose your network, and is
entirely open source.
Boundary is designed to be straightforward to understand, highly scalable,
and resilient. It can run in clouds, on-prem, secure enclaves and more,
and does not require an agent to be installed on every end host.
'';
license = licenses.mpl20;
maintainers = with maintainers; [ jk ];
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
};
}