2021-02-01 14:13:31 +01:00
|
|
|
{ stdenv, lib, fetchzip }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "boundary";
|
2023-07-27 16:55:45 +02:00
|
|
|
version = "0.13.1";
|
2021-02-01 14:13:31 +01:00
|
|
|
|
2021-03-11 16:21:57 +01:00
|
|
|
src =
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
2021-05-20 13:09:26 +02:00
|
|
|
selectSystem = attrs: attrs.${system} or (throw "Unsupported system: ${system}");
|
|
|
|
suffix = selectSystem {
|
2021-03-11 16:21:57 +01:00
|
|
|
x86_64-linux = "linux_amd64";
|
|
|
|
aarch64-linux = "linux_arm64";
|
|
|
|
x86_64-darwin = "darwin_amd64";
|
2022-02-24 22:55:23 +01:00
|
|
|
aarch64-darwin = "darwin_arm64";
|
2021-05-20 13:09:26 +02:00
|
|
|
};
|
|
|
|
sha256 = selectSystem {
|
2023-07-27 16:55:45 +02:00
|
|
|
x86_64-linux = "sha256-SrBfZ0te1l5XDmI8euojpVVRHxqq+T1WDSVbberxJYs=";
|
|
|
|
aarch64-linux = "sha256-T0t1E8lZMJZVanG7NZh9O+1RwzH82HtGi1ytDYYslhE=";
|
|
|
|
x86_64-darwin = "sha256-Wmk2hRbRe0dOuPnwISpsh2om1khpE3sX65VfWLYXNFk=";
|
|
|
|
aarch64-darwin = "sha256-ccfAtuqZSaQG4rCQZ4ujtFhp1e6dsrMAUcRuHT+YqXU=";
|
2021-03-11 16:21:57 +01:00
|
|
|
};
|
|
|
|
in
|
2021-05-20 13:09:26 +02:00
|
|
|
fetchzip {
|
|
|
|
url = "https://releases.hashicorp.com/boundary/${version}/boundary_${version}_${suffix}.zip";
|
|
|
|
inherit sha256;
|
2021-03-11 16:21:57 +01:00
|
|
|
};
|
2021-02-01 14:13:31 +01:00
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-03-11 16:21:57 +01:00
|
|
|
runHook preInstall
|
2021-02-01 14:13:31 +01:00
|
|
|
install -D boundary $out/bin/boundary
|
2021-03-11 16:21:57 +01:00
|
|
|
runHook postInstall
|
2021-02-01 14:13:31 +01:00
|
|
|
'';
|
|
|
|
|
2021-02-17 08:44:20 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
|
|
|
$out/bin/boundary --help
|
|
|
|
$out/bin/boundary version
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
|
|
|
|
2021-02-01 14:13:31 +01:00
|
|
|
dontPatchELF = true;
|
|
|
|
dontPatchShebangs = true;
|
2023-04-11 00:54:37 +02:00
|
|
|
dontStrip = true;
|
2021-02-01 14:13:31 +01:00
|
|
|
|
2021-02-02 15:13:25 +01:00
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
|
2021-02-01 14:13:31 +01: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.
|
|
|
|
'';
|
2022-06-11 13:39:29 +02:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2021-02-01 14:13:31 +01:00
|
|
|
license = licenses.mpl20;
|
2022-02-24 22:55:23 +01:00
|
|
|
maintainers = with maintainers; [ jk techknowlogick ];
|
2023-04-11 00:54:37 +02:00
|
|
|
platforms = platforms.unix;
|
2021-02-01 14:13:31 +01:00
|
|
|
};
|
|
|
|
}
|