nixpkgs/pkgs/applications/networking/resilio-sync/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

2017-06-01 14:48:13 +00:00
{ stdenv, fetchurl, ... }:
let
arch = {
"x86_64-linux" = "x64";
"i686-linux" = "i386";
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.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 {
2017-06-01 14:48:13 +00:00
name = "resilio-sync-${version}";
version = "2.6.0";
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 = {
"x86_64-linux" = "0041axi9carspkfaxvyirfvsa29zz55al01x90nh93nzxvpvywsz";
"i686-linux" = "1ar36lp4f6a1z9i82g3gpak4q4ny09faqxdd59q1pvfzq25ypdhs";
2017-06-01 19:49:38 +00:00
}.${stdenv.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";
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
};
}