56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
autoPatchelfHook,
|
|
libxcrypt-legacy,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "resilio-sync";
|
|
version = "3.0.2.1058";
|
|
|
|
src =
|
|
{
|
|
x86_64-linux = fetchurl {
|
|
url = "https://download-cdn.resilio.com/${version}/linux/x64/0/resilio-sync_x64.tar.gz";
|
|
hash = "sha256-jdkxSN/JscL2hxIWuShNKyUk28d453LPDM/+FtzquGQ=";
|
|
};
|
|
|
|
aarch64-linux = fetchurl {
|
|
url = "https://download-cdn.resilio.com/${version}/linux/arm64/0/resilio-sync_arm64.tar.gz";
|
|
hash = "sha256-iczg1jEy+49QczKxc0/UZJ8LPaCHsXKmSrudVb3RWZ8=";
|
|
};
|
|
}
|
|
.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
stdenv.cc.libc
|
|
libxcrypt-legacy
|
|
];
|
|
|
|
installPhase = ''
|
|
install -D rslsync "$out/bin/rslsync"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Automatically sync files via secure, distributed technology";
|
|
homepage = "https://www.resilio.com/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfreeRedistributable;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
thoughtpolice
|
|
cwoac
|
|
];
|
|
mainProgram = "rslsync";
|
|
};
|
|
}
|