2012-02-24 18:53:19 +01:00
|
|
|
{ stdenv, fetchurl, makeDesktopItem
|
2012-03-14 22:57:32 +01:00
|
|
|
, libSM, libX11, libXext, libXcomposite, libXcursor, libXdamage
|
|
|
|
, libXfixes, libXi, libXinerama, libXrandr, libXrender
|
2012-02-24 18:53:19 +01:00
|
|
|
, dbus, dbus_glib, fontconfig, gcc, patchelf
|
2013-10-23 12:05:59 +02:00
|
|
|
, atk, glib, gdk_pixbuf, gtk, pango, zlib
|
2012-02-24 18:53:19 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
# this package contains the daemon version of dropbox
|
|
|
|
# it's unfortunately closed source
|
|
|
|
#
|
|
|
|
# note: the resulting program has to be invoced as
|
|
|
|
# 'dropbox' because the internal python engine takes
|
|
|
|
# uses the name of the program as starting point.
|
|
|
|
#
|
|
|
|
# todo: dropbox is shipped with some copies of libraries.
|
|
|
|
# replace these libraries with the appropriate ones in
|
|
|
|
# nixpkgs.
|
|
|
|
|
|
|
|
let
|
2013-03-26 16:39:03 +01:00
|
|
|
arch = if stdenv.system == "x86_64-linux" then "x86_64"
|
|
|
|
else if stdenv.system == "i686-linux" then "x86"
|
|
|
|
else throw "Dropbox client for: ${stdenv.system} not supported!";
|
2013-10-23 12:05:59 +02:00
|
|
|
|
2013-03-26 16:39:03 +01:00
|
|
|
interpreter = if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2"
|
|
|
|
else if stdenv.system == "i686-linux" then "ld-linux.so.2"
|
|
|
|
else throw "Dropbox client for: ${stdenv.system} not supported!";
|
2012-02-24 18:53:19 +01:00
|
|
|
|
2015-02-24 03:14:19 +01:00
|
|
|
version = "2.10.52";
|
|
|
|
sha256 = if stdenv.system == "x86_64-linux" then "0fn2frp00f0p0r6v5czzxfbw1ifan9w12k3ry8gq1m4bvx6g27p6"
|
|
|
|
else if stdenv.system == "i686-linux" then "1rm5kspb53zqgaz48v8x3ffk1mcfi0nh0zsmsdniyrgqbis5mmm9"
|
2013-03-26 16:39:03 +01:00
|
|
|
else throw "Dropbox client for: ${stdenv.system} not supported!";
|
2012-02-24 18:53:19 +01:00
|
|
|
|
|
|
|
# relative location where the dropbox libraries are stored
|
2012-02-29 13:54:35 +01:00
|
|
|
appdir = "opt/dropbox";
|
2012-02-24 18:53:19 +01:00
|
|
|
|
|
|
|
# Libraries referenced by dropbox binary.
|
|
|
|
# Be aware that future versions of the dropbox binary may refer
|
|
|
|
# to different versions than are currently in these packages.
|
2012-03-14 22:57:32 +01:00
|
|
|
ldpath = stdenv.lib.makeSearchPath "lib" [
|
2012-02-24 18:53:19 +01:00
|
|
|
libSM libX11 libXext libXcomposite libXcursor libXdamage
|
|
|
|
libXfixes libXi libXinerama libXrandr libXrender
|
|
|
|
atk dbus dbus_glib glib fontconfig gcc gdk_pixbuf
|
2013-10-23 12:05:59 +02:00
|
|
|
gtk pango zlib
|
2012-02-24 18:53:19 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "dropbox";
|
|
|
|
exec = "dropbox";
|
|
|
|
comment = "Online directories";
|
|
|
|
desktopName = "Dropbox";
|
2013-01-21 11:20:30 +01:00
|
|
|
genericName = "Online storage";
|
2012-02-24 18:53:19 +01:00
|
|
|
categories = "Application;Internet;";
|
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "dropbox-${version}-bin";
|
|
|
|
src = fetchurl {
|
|
|
|
name = "dropbox-${version}.tar.gz";
|
2014-08-14 13:56:28 +02:00
|
|
|
|
2014-08-18 05:06:51 +02:00
|
|
|
url = "https://dl-web.dropbox.com/u/17/dropbox-lnx.${arch}-${version}.tar.gz";
|
2012-02-24 18:53:19 +01:00
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
rm -f .dropbox-dist/dropboxd
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2014-06-30 14:56:10 +02:00
|
|
|
mkdir -p "$out/${appdir}"
|
2014-08-14 13:56:28 +02:00
|
|
|
cp -r ".dropbox-dist/dropbox-lnx.${arch}-${version}"/* "$out/${appdir}/"
|
2014-06-30 14:56:10 +02:00
|
|
|
mkdir -p "$out/bin"
|
2012-02-29 13:54:35 +01:00
|
|
|
ln -s "$out/${appdir}/dropbox" "$out/bin/dropbox"
|
2012-02-24 18:53:19 +01:00
|
|
|
|
2013-03-26 16:39:03 +01:00
|
|
|
patchelf --set-interpreter ${stdenv.glibc}/lib/${interpreter} \
|
2012-02-29 13:54:35 +01:00
|
|
|
"$out/${appdir}/dropbox"
|
2014-08-14 13:56:28 +02:00
|
|
|
|
2015-01-15 05:44:00 +01:00
|
|
|
RPATH=${ldpath}:${gcc.cc}/lib:$out/${appdir}
|
2012-02-24 18:53:19 +01:00
|
|
|
echo "updating rpaths to: $RPATH"
|
2012-02-29 13:54:35 +01:00
|
|
|
find "$out/${appdir}" -type f -a -perm +0100 \
|
2012-02-24 18:53:19 +01:00
|
|
|
-print -exec patchelf --force-rpath --set-rpath "$RPATH" {} \;
|
|
|
|
|
2014-06-30 14:56:10 +02:00
|
|
|
mkdir -p "$out/share/applications"
|
2013-01-21 11:20:30 +01:00
|
|
|
cp "${desktopItem}/share/applications/"* $out/share/applications
|
2012-02-24 18:53:19 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-01-21 11:20:30 +01:00
|
|
|
homepage = "http://www.dropbox.com";
|
2012-02-24 18:53:19 +01:00
|
|
|
description = "Online stored folders (daemon version)";
|
2014-09-21 18:01:54 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
|
2012-02-24 18:53:19 +01:00
|
|
|
};
|
2012-03-14 22:57:32 +01:00
|
|
|
}
|