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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.5 KiB
Nix
Raw Normal View History

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 {
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
'';
meta = with lib; {
2017-06-01 17:48:13 +03:00
description = "Automatically sync files via secure, distributed technology";
homepage = "https://www.resilio.com/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2017-06-01 22:49:38 +03:00
license = licenses.unfreeRedistributable;
platforms = platforms.linux;
maintainers = with maintainers; [ domenkozar thoughtpolice cwoac jwoudenberg ];
2017-06-01 17:48:13 +03:00
};
}