2016-05-10 15:51:28 +00:00
|
|
|
{ stdenv, fetchurl, makeDesktopItem, patchelf, makeWrapper
|
|
|
|
, dbus_libs, fontconfig, freetype, gcc, glib
|
|
|
|
, libdrm, libffi, libICE, libSM
|
|
|
|
, libX11, libXcomposite, libXext, libXmu, libXrender, libxcb
|
|
|
|
, libxml2, libxslt, ncurses, 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
|
2016-07-06 16:34:43 +00:00
|
|
|
# NOTE: When updating, please also update in current stable,
|
|
|
|
# as older versions stop working
|
2017-03-26 18:16:34 +00:00
|
|
|
version = "22.4.24";
|
2015-05-18 20:34:15 +00:00
|
|
|
sha256 =
|
|
|
|
{
|
2017-03-26 18:16:34 +00:00
|
|
|
"x86_64-linux" = "1353mwk8hjqfc9a87zrp12klsc4anrxr7ccai4cffnq0yw2pnbfp";
|
|
|
|
"i686-linux" = "07gpdxq61qkj3c4aywh61zwj34w7j24gcv5y2xf2qgcwn8bykks2";
|
2015-05-18 20:34:15 +00:00
|
|
|
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
|
|
|
|
|
|
|
arch =
|
|
|
|
{
|
|
|
|
"x86_64-linux" = "x86_64";
|
2016-08-29 07:42:49 +00:00
|
|
|
"i686-linux" = "x86";
|
2015-05-18 20:34:15 +00:00
|
|
|
}."${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
|
|
|
|
2016-04-13 12:53:51 +00:00
|
|
|
ldpath = stdenv.lib.makeLibraryPath
|
2015-02-24 03:10:57 +00:00
|
|
|
[
|
2016-05-10 15:51:28 +00:00
|
|
|
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
|
|
|
|
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
|
|
|
|
ncurses zlib
|
2012-02-24 17:53:19 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "dropbox";
|
|
|
|
exec = "dropbox";
|
2015-12-12 23:26:41 +00:00
|
|
|
comment = "Sync your files across computers and to the web";
|
2012-02-24 17:53:19 +00:00
|
|
|
desktopName = "Dropbox";
|
2015-12-12 23:26:41 +00:00
|
|
|
genericName = "File Synchronizer";
|
|
|
|
categories = "Network;FileTransfer;";
|
|
|
|
startupNotify = "false";
|
2012-02-24 17:53:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
2015-09-27 17:14:51 +00:00
|
|
|
name = "dropbox-${version}";
|
2012-02-24 17:53:19 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2015-09-27 17:14:51 +00:00
|
|
|
sourceRoot = ".dropbox-dist";
|
2012-02-24 17:53:19 +00:00
|
|
|
|
2016-05-10 15:51:28 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper patchelf ];
|
2015-09-27 17:14:51 +00:00
|
|
|
dontPatchELF = true; # patchelf invoked explicitly below
|
|
|
|
dontStrip = true; # already done
|
2015-02-24 16:26:22 +00:00
|
|
|
|
2012-02-24 17:53:19 +00:00
|
|
|
installPhase = ''
|
2017-03-25 15:14:51 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2014-06-30 12:56:10 +00:00
|
|
|
mkdir -p "$out/${appdir}"
|
2016-08-29 07:42:49 +00:00
|
|
|
cp -r --no-preserve=mode "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}/libGL.so.1"
|
|
|
|
rm "$out/${appdir}/libX11-xcb.so.1"
|
|
|
|
|
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
|
|
|
|
2015-09-27 17:14:51 +00:00
|
|
|
mkdir -p "$out/share/icons"
|
|
|
|
ln -s "$out/${appdir}/images/hicolor" "$out/share/icons/hicolor"
|
|
|
|
|
2015-02-24 16:26:22 +00:00
|
|
|
mkdir -p "$out/bin"
|
2015-09-27 17:14:51 +00:00
|
|
|
RPATH="${ldpath}:$out/${appdir}"
|
2016-05-10 15:51:28 +00:00
|
|
|
makeWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \
|
2015-09-27 17:14:51 +00:00
|
|
|
--prefix LD_LIBRARY_PATH : "$RPATH"
|
2016-08-29 07:42:49 +00:00
|
|
|
|
|
|
|
chmod 755 $out/${appdir}/dropbox
|
2017-03-25 15:14:51 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2015-09-27 17:14:51 +00:00
|
|
|
'';
|
2015-05-18 20:36:49 +00:00
|
|
|
|
2015-09-27 17:14:51 +00:00
|
|
|
fixupPhase = ''
|
2017-03-25 15:14:51 +00:00
|
|
|
runHook preFixup
|
|
|
|
|
2015-09-27 17:14:51 +00:00
|
|
|
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
|
2017-01-28 23:40:04 +00:00
|
|
|
|
|
|
|
paxmark m $out/${appdir}/dropbox
|
2017-03-25 15:14:51 +00:00
|
|
|
|
|
|
|
runHook postFixup
|
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" ];
|
2016-05-07 12:13:28 +00:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
2012-02-24 17:53:19 +00:00
|
|
|
};
|
2012-03-14 21:57:32 +00:00
|
|
|
}
|