summary refs log tree commit diff
path: root/pkgs/applications/networking/bittorrentsync/generic.nix
blob: 6d8735609eafe959cc142cd1a1715acc47d3b498 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenv, fetchurl, version, sha256s, ... } @ args:

let
  arch = {
    "x86_64-linux" = "x64";
    "i686-linux" = "i386";
  }.${stdenv.system};
  libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ];
in

stdenv.mkDerivation rec {
  name = "btsync-${version}";
  inherit version;

  src = fetchurl {
    # annoyingly, downloads for 1.4 and 2.3 do not follow the same URL layout; this is
    # a simple work-around, in place of overriding the url in the caller.
    urls = [
      "https://download-cdn.getsync.com/${version}/linux-${arch}/BitTorrent-Sync_${arch}.tar.gz"
      "http://syncapp.bittorrent.com/${version}/btsync_${arch}-${version}.tar.gz"
    ];
    sha256 = sha256s.${stdenv.system};
  };

  dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
  sourceRoot = ".";

  installPhase = ''
    install -D btsync "$out/bin/btsync"
    patchelf --interpreter "$(< $NIX_CC/nix-support/dynamic-linker)" --set-rpath ${libPath} "$out/bin/btsync"
  '';

  meta = {
    description = "Automatically sync files via secure, distributed technology";
    homepage    = https://www.getsync.com/;
    license     = stdenv.lib.licenses.unfreeRedistributable;
    platforms   = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ iElectric thoughtpolice cwoac ];
  };
}