2015-02-24 16:26:22 +00:00
|
|
|
{ stdenv, fetchurl, makeDesktopItem, makeWrapper
|
2015-02-24 17:12:56 +00:00
|
|
|
, dbus_libs, gcc, glib, libdrm, libffi, libICE, libSM
|
2015-02-24 16:26:00 +00:00
|
|
|
, libX11, libXmu, ncurses, popt, qt5, zlib
|
2012-02-24 17:53:19 +00: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.
|
2015-02-24 17:12:56 +00:00
|
|
|
|
|
|
|
# Dropbox ships with its own copies of some libraries.
|
|
|
|
# Unfortunately, upstream makes changes to the source of
|
|
|
|
# some libraries, rendering them incompatible with the
|
|
|
|
# open-source versions. Wherever possible, we must try
|
|
|
|
# to make the bundled libraries work, rather than replacing
|
|
|
|
# them with our own.
|
2012-02-24 17:53:19 +00:00
|
|
|
|
|
|
|
let
|
2015-05-18 20:34:15 +00:00
|
|
|
# NOTE: When updating, please also update in current stable, as older versions stop working
|
2015-09-16 20:59:32 +00:00
|
|
|
version = "3.8.9";
|
2015-05-18 20:34:15 +00:00
|
|
|
sha256 =
|
|
|
|
{
|
2015-09-16 20:59:32 +00:00
|
|
|
"x86_64-linux" = "1mdhf57bqi4vihbzv5lz8zk4n576c1qjm7hzcq4f5qvkdsmp5in2";
|
|
|
|
"i686-linux" = "0gighh782jjmlgqgbw2d00a3ri5h3inqdik7v70f1yygvkr7awy8";
|
2015-05-18 20:34:15 +00:00
|
|
|
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
|
|
|
|
|
|
|
arch =
|
|
|
|
{
|
|
|
|
"x86_64-linux" = "x86_64";
|
|
|
|
"i686-linux" = "x86";
|
|
|
|
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
|
|
|
|
|
|
|
interpreter =
|
|
|
|
{
|
|
|
|
"x86_64-linux" = "ld-linux-x86-64.so.2";
|
|
|
|
"i686-linux" = "ld-linux.so.2";
|
|
|
|
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
2012-02-24 17:53:19 +00:00
|
|
|
|
|
|
|
# relative location where the dropbox libraries are stored
|
2012-02-29 12:54:35 +00:00
|
|
|
appdir = "opt/dropbox";
|
2012-02-24 17:53:19 +00:00
|
|
|
|
2015-02-24 03:10:57 +00:00
|
|
|
ldpath = stdenv.lib.makeSearchPath "lib"
|
|
|
|
[
|
2015-02-24 17:12:56 +00:00
|
|
|
dbus_libs gcc glib libdrm libffi libICE libSM libX11
|
2015-02-24 16:26:00 +00:00
|
|
|
libXmu ncurses popt qt5.base qt5.declarative qt5.webkit
|
2015-02-24 03:10:57 +00:00
|
|
|
zlib
|
2012-02-24 17:53:19 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "dropbox";
|
|
|
|
exec = "dropbox";
|
|
|
|
comment = "Online directories";
|
|
|
|
desktopName = "Dropbox";
|
2013-01-21 10:20:30 +00:00
|
|
|
genericName = "Online storage";
|
2012-02-24 17:53:19 +00:00
|
|
|
categories = "Application;Internet;";
|
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "dropbox-${version}-bin";
|
|
|
|
src = fetchurl {
|
|
|
|
name = "dropbox-${version}.tar.gz";
|
2014-08-18 03:06:51 +00:00
|
|
|
url = "https://dl-web.dropbox.com/u/17/dropbox-lnx.${arch}-${version}.tar.gz";
|
2012-02-24 17:53:19 +00:00
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
rm -f .dropbox-dist/dropboxd
|
|
|
|
'';
|
|
|
|
|
2015-02-24 16:26:22 +00:00
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
2012-02-24 17:53:19 +00:00
|
|
|
installPhase = ''
|
2014-06-30 12:56:10 +00:00
|
|
|
mkdir -p "$out/${appdir}"
|
2014-08-14 11:56:28 +00:00
|
|
|
cp -r ".dropbox-dist/dropbox-lnx.${arch}-${version}"/* "$out/${appdir}/"
|
2012-02-24 17:53:19 +00:00
|
|
|
|
2015-02-24 03:10:57 +00:00
|
|
|
rm "$out/${appdir}/libdrm.so.2"
|
|
|
|
rm "$out/${appdir}/libffi.so.6"
|
|
|
|
rm "$out/${appdir}/libicudata.so.42"
|
|
|
|
rm "$out/${appdir}/libicui18n.so.42"
|
|
|
|
rm "$out/${appdir}/libicuuc.so.42"
|
|
|
|
rm "$out/${appdir}/libGL.so.1"
|
|
|
|
rm "$out/${appdir}/libpopt.so.0"
|
|
|
|
rm "$out/${appdir}/libQt5Core.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5DBus.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5Gui.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5Network.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5OpenGL.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5PrintSupport.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5Qml.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5Quick.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5Sql.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5WebKit.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5WebKitWidgets.so.5"
|
|
|
|
rm "$out/${appdir}/libQt5Widgets.so.5"
|
|
|
|
rm "$out/${appdir}/libX11-xcb.so.1"
|
|
|
|
|
2015-02-24 16:54:54 +00:00
|
|
|
rm "$out/${appdir}/qt.conf"
|
2015-02-24 03:10:57 +00:00
|
|
|
rm -fr "$out/${appdir}/plugins"
|
|
|
|
|
2015-09-06 08:21:43 +00:00
|
|
|
find "$out/${appdir}" -type f -a -perm -0100 \
|
2015-02-24 03:10:57 +00:00
|
|
|
-print -exec patchelf --set-interpreter ${stdenv.glibc}/lib/${interpreter} {} \;
|
|
|
|
|
2015-01-15 04:44:00 +00:00
|
|
|
RPATH=${ldpath}:${gcc.cc}/lib:$out/${appdir}
|
2012-02-24 17:53:19 +00:00
|
|
|
echo "updating rpaths to: $RPATH"
|
2015-09-06 08:21:43 +00:00
|
|
|
find "$out/${appdir}" -type f -a -perm -0100 \
|
2012-02-24 17:53:19 +00:00
|
|
|
-print -exec patchelf --force-rpath --set-rpath "$RPATH" {} \;
|
|
|
|
|
2014-06-30 12:56:10 +00:00
|
|
|
mkdir -p "$out/share/applications"
|
2013-01-21 10:20:30 +00:00
|
|
|
cp "${desktopItem}/share/applications/"* $out/share/applications
|
2015-02-24 16:26:22 +00:00
|
|
|
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
makeWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \
|
|
|
|
--prefix LD_LIBRARY_PATH : "${ldpath}"
|
2015-05-18 20:36:49 +00:00
|
|
|
|
|
|
|
mkdir -p "$out/share/icons"
|
|
|
|
ln -s "$out/${appdir}/images/hicolor" "$out/share/icons/hicolor"
|
2012-02-24 17:53:19 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-01-21 10:20:30 +00:00
|
|
|
homepage = "http://www.dropbox.com";
|
2012-02-24 17:53:19 +00:00
|
|
|
description = "Online stored folders (daemon version)";
|
2014-09-21 16:01:54 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
|
2015-09-27 16:14:14 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2012-02-24 17:53:19 +00:00
|
|
|
};
|
2012-03-14 21:57:32 +00:00
|
|
|
}
|