mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ stdenv, lib, fetchzip, patchelf }:
|
|
|
|
let
|
|
inherit (stdenv.hostPlatform) system;
|
|
throwSystem = throw "Unsupported system: ${system}";
|
|
|
|
plat = {
|
|
x86_64-linux = "linux_amd64";
|
|
aarch64-linux = "linux_arm64";
|
|
armv7l-linux = "linux_armv7";
|
|
}.${system} or throwSystem;
|
|
|
|
sha256 = {
|
|
x86_64-linux = "sha256-gcmgpvfk7bciTmotTHObvZvLPdLudAR2vQneLKN+uE4=";
|
|
aarch64-linux = "sha256-cZDekIW2Z7hfIY6Y4xhsmgvMLnKYo6H9BAMg9/I5a10=";
|
|
armv7l-linux = "sha256-Fn2e1ywuTUt58geT4hNb3YEZiJDE6TUKaKI/xpsG69c=";
|
|
}.${system} or throwSystem;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "zrok";
|
|
version = "0.3.6";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/openziti/zrok/releases/download/v${version}/zrok_${version}_${plat}.tar.gz";
|
|
stripRoot = false;
|
|
inherit sha256;
|
|
};
|
|
|
|
updateScript = ./update.sh;
|
|
|
|
installPhase = let
|
|
interpreter = "$(< \"$NIX_CC/nix-support/dynamic-linker\")";
|
|
in ''
|
|
mkdir -p $out/bin
|
|
cp zrok $out/bin/
|
|
chmod +x $out/bin/zrok
|
|
patchelf --set-interpreter "${interpreter}" "$out/bin/zrok"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Geo-scale, next-generation sharing platform built on top of OpenZiti";
|
|
homepage = "https://zrok.io";
|
|
maintainers = [ lib.maintainers.bandresen ];
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "armv7l-linux" ];
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
license = lib.licenses.apsl20;
|
|
};
|
|
|
|
}
|