2017-06-01 16:48:13 +02:00
|
|
|
{ stdenv, fetchurl, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
arch = {
|
|
|
|
"x86_64-linux" = "x64";
|
|
|
|
"i686-linux" = "i386";
|
2017-12-06 00:06:43 +01:00
|
|
|
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
|
2017-06-01 16:48:13 +02:00
|
|
|
libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ];
|
|
|
|
|
2017-06-01 21:49:38 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2017-06-01 16:48:13 +02:00
|
|
|
name = "resilio-sync-${version}";
|
2018-03-15 19:47:21 +01:00
|
|
|
version = "2.5.12";
|
2017-06-01 16:48:13 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-06-01 21:49:38 +02:00
|
|
|
url = "https://download-cdn.resilio.com/${version}/linux-${arch}/resilio-sync_${arch}.tar.gz";
|
|
|
|
sha256 = {
|
2018-03-15 19:47:21 +01:00
|
|
|
"x86_64-linux" = "176gf5704wh22kqig8n0gg83048w71grw7h37k2qvxjaf4vypnc7";
|
|
|
|
"i686-linux" = "15m2s2cqrkpb7ladbwimbs9agqb4ww9jr4gf0ifjwzm2grv5ffnh";
|
2017-06-01 21:49:38 +02:00
|
|
|
}.${stdenv.system};
|
2017-06-01 16:48:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D rslsync "$out/bin/rslsync"
|
2017-06-01 21:49:38 +02:00
|
|
|
patchelf \
|
|
|
|
--interpreter "$(< $NIX_CC/nix-support/dynamic-linker)" \
|
|
|
|
--set-rpath ${libPath} "$out/bin/rslsync"
|
2017-06-01 16:48:13 +02:00
|
|
|
'';
|
|
|
|
|
2017-06-01 21:49:38 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-06-01 16:48:13 +02:00
|
|
|
description = "Automatically sync files via secure, distributed technology";
|
|
|
|
homepage = https://www.resilio.com/;
|
2017-06-01 21:49:38 +02:00
|
|
|
license = licenses.unfreeRedistributable;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ domenkozar thoughtpolice cwoac ];
|
2017-06-01 16:48:13 +02:00
|
|
|
};
|
|
|
|
}
|