2023-04-03 21:20:34 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoPatchelfHook, libxcrypt-legacy }:
|
2017-06-01 14:48:13 +00:00
|
|
|
|
2022-03-29 15:21:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "resilio-sync";
|
2024-07-26 22:08:47 +00:00
|
|
|
version = "2.8.1.1390";
|
2017-06-01 14:48:13 +00:00
|
|
|
|
2022-03-29 15:21:32 +00:00
|
|
|
src = {
|
|
|
|
x86_64-linux = fetchurl {
|
2024-07-26 22:08:47 +00:00
|
|
|
url = "https://download-cdn.resilio.com/${version}/linux/x64/0/resilio-sync_x64.tar.gz";
|
|
|
|
sha256 = "sha256-XrfE2frDxOS32MzO7gpJEsMd0WY+b7TS0h/H94M7Py4=";
|
2022-03-29 15:21:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
i686-linux = fetchurl {
|
2024-07-26 22:08:47 +00:00
|
|
|
url = "https://download-cdn.resilio.com/${version}/linux/i386/0/resilio-sync_i386.tar.gz";
|
|
|
|
sha256 = "sha256-tWwb9DHLlXeyimzyo/yxVKqlkP3jlAxT2Yzs6h2bIgs=";
|
2022-03-29 15:21:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
aarch64-linux = fetchurl {
|
2024-07-26 22:08:47 +00:00
|
|
|
url = "https://download-cdn.resilio.com/${version}/linux/arm64/0/resilio-sync_arm64.tar.gz";
|
|
|
|
sha256 = "sha256-b859DqxTfnBMMeiwXlGKTQ+Mpmr2Rpg24l/GNkxSWbA=";
|
2022-03-29 15:21:32 +00:00
|
|
|
};
|
|
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
2017-06-01 14:48:13 +00:00
|
|
|
|
|
|
|
dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
2023-04-03 21:20:34 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoPatchelfHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
stdenv.cc.libc
|
|
|
|
libxcrypt-legacy
|
|
|
|
];
|
|
|
|
|
2017-06-01 14:48:13 +00:00
|
|
|
installPhase = ''
|
|
|
|
install -D rslsync "$out/bin/rslsync"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-06-01 14:48:13 +00:00
|
|
|
description = "Automatically sync files via secure, distributed technology";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.resilio.com/";
|
2022-06-04 22:19:25 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2017-06-01 19:49:38 +00:00
|
|
|
license = licenses.unfreeRedistributable;
|
|
|
|
platforms = platforms.linux;
|
2024-07-01 21:52:46 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar thoughtpolice cwoac ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "rslsync";
|
2017-06-01 14:48:13 +00:00
|
|
|
};
|
|
|
|
}
|