2017-06-01 14:48:13 +00:00
|
|
|
{ stdenv, fetchurl, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
arch = {
|
2019-08-13 21:52:01 +00:00
|
|
|
x86_64-linux = "x64";
|
|
|
|
i686-linux = "i386";
|
2020-11-10 20:19:33 +00:00
|
|
|
aarch64-linux = "arm64";
|
2018-08-20 19:11:29 +00:00
|
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
2017-06-01 14:48:13 +00:00
|
|
|
libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ];
|
|
|
|
|
2017-06-01 19:49:38 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "resilio-sync";
|
2020-07-22 08:51:04 +00:00
|
|
|
version = "2.7.2";
|
2017-06-01 14:48:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-06-01 19:49:38 +00:00
|
|
|
url = "https://download-cdn.resilio.com/${version}/linux-${arch}/resilio-sync_${arch}.tar.gz";
|
|
|
|
sha256 = {
|
2020-07-22 08:51:04 +00:00
|
|
|
x86_64-linux = "0gar5lzv1v4yqmypwqsjnfb64vffzn8mw9vnjr733fgf1pmr57hf";
|
|
|
|
i686-linux = "1bws7r86h1vysjkhyvp2zk8yvxazmlczvhjlcayldskwq48iyv6w";
|
2020-11-10 20:19:33 +00:00
|
|
|
aarch64-linux = "0j8wk5cf8bcaaqxi8gnqf1mpv8nyfjyr4ibls7jnn2biqq767af2";
|
2018-08-20 19:11:29 +00:00
|
|
|
}.${stdenv.hostPlatform.system};
|
2017-06-01 14:48:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D rslsync "$out/bin/rslsync"
|
2017-06-01 19:49:38 +00:00
|
|
|
patchelf \
|
|
|
|
--interpreter "$(< $NIX_CC/nix-support/dynamic-linker)" \
|
|
|
|
--set-rpath ${libPath} "$out/bin/rslsync"
|
2017-06-01 14:48:13 +00:00
|
|
|
'';
|
|
|
|
|
2017-06-01 19:49:38 +00:00
|
|
|
meta = with stdenv.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/";
|
2017-06-01 19:49:38 +00:00
|
|
|
license = licenses.unfreeRedistributable;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ domenkozar thoughtpolice cwoac ];
|
2017-06-01 14:48:13 +00:00
|
|
|
};
|
|
|
|
}
|