2024-09-12 04:27:55 +00:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
lib,
|
|
|
|
fetchzip,
|
|
|
|
}:
|
2021-02-01 13:13:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "boundary";
|
2024-10-14 20:19:36 +00:00
|
|
|
version = "0.18.0";
|
2021-02-01 13:13:31 +00:00
|
|
|
|
2021-03-11 15:21:57 +00:00
|
|
|
src =
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
2021-05-20 11:09:26 +00:00
|
|
|
selectSystem = attrs: attrs.${system} or (throw "Unsupported system: ${system}");
|
|
|
|
suffix = selectSystem {
|
2021-03-11 15:21:57 +00:00
|
|
|
x86_64-linux = "linux_amd64";
|
|
|
|
aarch64-linux = "linux_arm64";
|
|
|
|
x86_64-darwin = "darwin_amd64";
|
2022-02-24 21:55:23 +00:00
|
|
|
aarch64-darwin = "darwin_arm64";
|
2021-05-20 11:09:26 +00:00
|
|
|
};
|
2024-09-12 04:24:36 +00:00
|
|
|
hash = selectSystem {
|
2024-10-14 20:19:36 +00:00
|
|
|
x86_64-linux = "sha256-Wp1gPFQkOv+ZCEy0D2Tw9l6aCZekdpkXYcTZNheJHEg=";
|
|
|
|
aarch64-linux = "sha256-jBYu4m3L+j/coJ4D9cPA8mSBYiLiUyVKp98x6mdrrrk=";
|
|
|
|
x86_64-darwin = "sha256-OuiF1pgutt69ghlkLkEwkWMIFjvAsY7YUZERHNiToMs=";
|
|
|
|
aarch64-darwin = "sha256-sYKA02euri/K8FM8GoY7Y/WWLE2nBSoiNoxSdUPunWA=";
|
2021-03-11 15:21:57 +00:00
|
|
|
};
|
|
|
|
in
|
2021-05-20 11:09:26 +00:00
|
|
|
fetchzip {
|
|
|
|
url = "https://releases.hashicorp.com/boundary/${version}/boundary_${version}_${suffix}.zip";
|
2024-09-12 04:24:36 +00:00
|
|
|
inherit hash;
|
|
|
|
stripRoot = false;
|
2021-03-11 15:21:57 +00:00
|
|
|
};
|
2021-02-01 13:13:31 +00:00
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-03-11 15:21:57 +00:00
|
|
|
runHook preInstall
|
2021-02-01 13:13:31 +00:00
|
|
|
install -D boundary $out/bin/boundary
|
2021-03-11 15:21:57 +00:00
|
|
|
runHook postInstall
|
2021-02-01 13:13:31 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-17 07:44:20 +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;
|
2023-04-10 22:54:37 +00:00
|
|
|
dontStrip = true;
|
2021-02-01 13:13:31 +00:00
|
|
|
|
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.
|
|
|
|
'';
|
2022-06-11 11:39:29 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2024-02-05 13:09:19 +00:00
|
|
|
license = licenses.bsl11;
|
2024-09-12 04:27:55 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
jk
|
|
|
|
techknowlogick
|
|
|
|
];
|
2023-04-10 22:54:37 +00:00
|
|
|
platforms = platforms.unix;
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "boundary";
|
2021-02-01 13:13:31 +00:00
|
|
|
};
|
|
|
|
}
|