mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 07:34:36 +00:00
9e53477ee4
Also add installCheck
63 lines
1.9 KiB
Nix
63 lines
1.9 KiB
Nix
{ stdenv, lib, fetchzip }:
|
|
|
|
let
|
|
inherit (stdenv.hostPlatform) system;
|
|
suffix = {
|
|
x86_64-linux = "linux_amd64";
|
|
aarch64-linux = "linux_arm64";
|
|
x86_64-darwin = "darwin_amd64";
|
|
}."${system}" or (throw "Unsupported system: ${system}");
|
|
fetchsrc = version: sha256: fetchzip {
|
|
url = "https://releases.hashicorp.com/boundary/${version}/boundary_${version}_${suffix}.zip";
|
|
sha256 = sha256."${system}";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "boundary";
|
|
version = "0.1.7";
|
|
|
|
src = fetchsrc version {
|
|
x86_64-linux = "sha256-cSD9V/Hj/eEc6k+LMNRnSEA94fA6bQUfCgA+XdqAR4k=";
|
|
aarch64-linux = "sha256-MG97PhG/t1rdmTF3n2YHYsTo8VODCaY3cfnv8YHgAY8=";
|
|
x86_64-darwin = "sha256-p60UiIy9DGx7AaEvmyo4FLa0Z67MQRNJkw1nHaM6eww=";
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
install -D boundary $out/bin/boundary
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
$out/bin/boundary --help
|
|
$out/bin/boundary version
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
dontPatchELF = true;
|
|
dontPatchShebangs = true;
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
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" ];
|
|
};
|
|
}
|