2022-10-25 10:06:40 +03:00
|
|
|
{ lib, stdenv, fetchurl, libxcrypt, ... }:
|
2017-06-01 17:48:13 +03:00
|
|
|
|
2022-03-29 18:21:32 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "resilio-sync";
|
2022-03-29 18:21:32 +03:00
|
|
|
version = "2.7.3";
|
2017-06-01 17:48:13 +03:00
|
|
|
|
2022-03-29 18:21:32 +03:00
|
|
|
src = {
|
|
|
|
x86_64-linux = fetchurl {
|
|
|
|
url = "https://download-cdn.resilio.com/${version}/linux-x64/resilio-sync_x64.tar.gz";
|
|
|
|
sha256 = "sha256-DYQs9KofHkvtlsRQHRLwQHoHwSZkr40Ih0RVAw2xv3M=";
|
|
|
|
};
|
|
|
|
|
|
|
|
i686-linux = fetchurl {
|
|
|
|
url = "https://download-cdn.resilio.com/${version}/linux-i386/resilio-sync_i386.tar.gz";
|
|
|
|
sha256 = "sha256-PFKVBs0KthG4tuvooHkAciPhNQP0K8oi2LyoRUs5V7I=";
|
|
|
|
};
|
|
|
|
|
|
|
|
aarch64-linux = fetchurl {
|
|
|
|
url = "https://download-cdn.resilio.com/${version}/linux-arm64/resilio-sync_arm64.tar.gz";
|
|
|
|
sha256 = "sha256-o2DlYOBTkFhQMEDJySlVSNlVqLNbBzacyv2oTwxrXto=";
|
|
|
|
};
|
|
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
2017-06-01 17:48:13 +03:00
|
|
|
|
|
|
|
dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D rslsync "$out/bin/rslsync"
|
2017-06-01 22:49:38 +03:00
|
|
|
patchelf \
|
|
|
|
--interpreter "$(< $NIX_CC/nix-support/dynamic-linker)" \
|
2022-10-25 10:06:40 +03:00
|
|
|
--set-rpath ${lib.makeLibraryPath [ stdenv.cc.libc libxcrypt ]} "$out/bin/rslsync"
|
2017-06-01 17:48:13 +03:00
|
|
|
'';
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2017-06-01 17:48:13 +03:00
|
|
|
description = "Automatically sync files via secure, distributed technology";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://www.resilio.com/";
|
2022-06-05 01:19:25 +03:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2017-06-01 22:49:38 +03:00
|
|
|
license = licenses.unfreeRedistributable;
|
|
|
|
platforms = platforms.linux;
|
2021-06-08 09:56:38 +03:00
|
|
|
maintainers = with maintainers; [ domenkozar thoughtpolice cwoac jwoudenberg ];
|
2017-06-01 17:48:13 +03:00
|
|
|
};
|
|
|
|
}
|