nixpkgs/pkgs/applications/networking/dropbox/default.nix

155 lines
5 KiB
Nix
Raw Normal View History

2015-09-27 17:14:51 +00:00
{ stdenv, fetchurl, makeDesktopItem, makeWrapper, patchelf
, dbus_libs, gcc, glib, libdrm, libffi, libICE, libSM
2015-02-24 16:26:00 +00:00
, libX11, libXmu, ncurses, popt, qt5, zlib
2015-09-27 16:14:36 +00:00
, qtbase, qtdeclarative, qtwebkit
}:
# 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.
# 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.
let
# NOTE: When updating, please also update in current stable, as older versions stop working
2015-12-06 17:13:11 +00:00
version = "3.12.4";
sha256 =
{
2015-12-06 17:13:11 +00:00
"x86_64-linux" = "0xq5gjqmrl4fn6vp7krj44jhb71npxvsjzbqb01whyyw7mdlc8gf";
"i686-linux" = "093bfnak5xv50p9fxpr68w25hc1d08fcvrqnb4a6nb9wdfv3lkr6";
}."${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");
# relative location where the dropbox libraries are stored
appdir = "opt/dropbox";
2015-02-24 03:10:57 +00:00
ldpath = stdenv.lib.makeSearchPath "lib"
[
2015-09-27 17:14:51 +00:00
dbus_libs gcc.cc glib libdrm libffi libICE libSM libX11 libXmu
ncurses popt qtbase qtdeclarative qtwebkit zlib
];
desktopItem = makeDesktopItem {
name = "dropbox";
exec = "dropbox";
comment = "Online directories";
desktopName = "Dropbox";
2013-01-21 10:20:30 +00:00
genericName = "Online storage";
categories = "Application;Internet;";
};
in stdenv.mkDerivation {
2015-09-27 17:14:51 +00:00
name = "dropbox-${version}";
src = fetchurl {
name = "dropbox-${version}.tar.gz";
url = "https://dl-web.dropbox.com/u/17/dropbox-lnx.${arch}-${version}.tar.gz";
inherit sha256;
};
2015-09-27 17:14:51 +00:00
sourceRoot = ".dropbox-dist";
2015-09-27 17:14:51 +00:00
buildInputs = [ makeWrapper patchelf ];
dontPatchELF = true; # patchelf invoked explicitly below
dontStrip = true; # already done
installPhase = ''
mkdir -p "$out/${appdir}"
2015-09-27 17:14:51 +00:00
cp -r "dropbox-lnx.${arch}-${version}"/* "$out/${appdir}/"
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"
mkdir -p "$out/share/applications"
2013-01-21 10:20:30 +00:00
cp "${desktopItem}/share/applications/"* $out/share/applications
2015-09-27 17:14:51 +00:00
mkdir -p "$out/share/icons"
ln -s "$out/${appdir}/images/hicolor" "$out/share/icons/hicolor"
mkdir -p "$out/bin"
2015-09-27 17:14:51 +00:00
RPATH="${ldpath}:$out/${appdir}"
makeWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \
2015-09-27 17:14:51 +00:00
--prefix LD_LIBRARY_PATH : "$RPATH"
'';
2015-05-18 20:36:49 +00:00
2015-09-27 17:14:51 +00:00
fixupPhase = ''
INTERP=$(cat $NIX_CC/nix-support/dynamic-linker)
RPATH="${ldpath}:$out/${appdir}"
getType='s/ *Type: *\([A-Z]*\) (.*/\1/'
find "$out/${appdir}" -type f -a -perm -0100 -print | while read obj; do
dynamic=$(readelf -S "$obj" 2>/dev/null | grep "DYNAMIC" || true)
if [[ -n "$dynamic" ]]; then
type=$(readelf -h "$obj" 2>/dev/null | grep 'Type:' | sed -e "$getType")
if [[ "$type" == "EXEC" ]]; then
echo "patching interpreter path in $type $obj"
patchelf --set-interpreter "$INTERP" "$obj"
echo "patching RPATH in $type $obj"
oldRPATH=$(patchelf --print-rpath "$obj")
patchelf --set-rpath "''${oldRPATH:+$oldRPATH:}$RPATH" "$obj"
echo "shrinking RPATH in $type $obj"
patchelf --shrink-rpath "$obj"
elif [[ "$type" == "DYN" ]]; then
echo "patching RPATH in $type $obj"
oldRPATH=$(patchelf --print-rpath "$obj")
patchelf --set-rpath "''${oldRPATH:+$oldRPATH:}$RPATH" "$obj"
echo "shrinking RPATH in $type $obj"
patchelf --shrink-rpath "$obj"
else
echo "unknown ELF type \"$type\"; not patching $obj"
fi
fi
done
'';
meta = {
2013-01-21 10:20:30 +00:00
homepage = "http://www.dropbox.com";
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" ];
};
}