Merge pull request #31140 from ttuegel/dropbox
dropbox: use buildFHSUserEnv
This commit is contained in:
commit
a513c07933
@ -1,57 +1,23 @@
|
|||||||
{ mkDerivation, stdenv, lib, fetchurl, makeDesktopItem
|
{ stdenv, lib, buildFHSUserEnv, writeScript, makeDesktopItem }:
|
||||||
, makeWrapper, patchelf
|
|
||||||
, dbus_libs, fontconfig, freetype, gcc, glib
|
|
||||||
, libdrm, libffi, libICE, libSM
|
|
||||||
, libX11, libXcomposite, libXext, libXmu, libXrender, libxcb
|
|
||||||
, libxml2, libxslt, ncurses, zlib
|
|
||||||
, qtbase, qtdeclarative, qtwebkit, wmctrl
|
|
||||||
}:
|
|
||||||
|
|
||||||
# this package contains the daemon version of dropbox
|
let platforms = [ "i686-linux" "x86_64-linux" ]; in
|
||||||
# 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.
|
assert lib.elem stdenv.system platforms;
|
||||||
# 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.
|
|
||||||
|
|
||||||
|
# Dropbox client to bootstrap installation.
|
||||||
|
# The client is self-updating, so the actual version may be newer.
|
||||||
let
|
let
|
||||||
## Prefetch commands to run after update, from this directory:
|
version = "38.4.27";
|
||||||
## e.g. with Emacs: C-u M-x shell-command
|
|
||||||
# nix-prefetch-url ../../../../ -A dropbox.src
|
|
||||||
# nix-prefetch-url ../../../../ -A pkgsi686Linux.dropbox.src
|
|
||||||
|
|
||||||
# NOTE: When updating, please also update in current stable,
|
|
||||||
# as older versions stop working
|
|
||||||
version = "37.4.29";
|
|
||||||
sha256 = {
|
|
||||||
"x86_64-linux" = "0ymy8gb57bjq2mq35n52q2viww6am7wy0vskyvypliicggga8iaj";
|
|
||||||
"i686-linux" = "0a7zir6x7z3ad71fj1iljc2l6x09f4wi40jfaiinf8ykx85cldw6";
|
|
||||||
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
|
||||||
|
|
||||||
arch = {
|
arch = {
|
||||||
"x86_64-linux" = "x86_64";
|
"x86_64-linux" = "x86_64";
|
||||||
"i686-linux" = "x86";
|
"i686-linux" = "x86";
|
||||||
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
}.${stdenv.system};
|
||||||
|
|
||||||
# relative location where the dropbox libraries are stored
|
installer = "https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.${arch}-${version}.tar.gz";
|
||||||
appdir = "opt/dropbox";
|
in
|
||||||
|
|
||||||
libs = [
|
|
||||||
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
|
|
||||||
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
|
|
||||||
ncurses zlib
|
|
||||||
|
|
||||||
qtbase qtdeclarative qtwebkit
|
|
||||||
];
|
|
||||||
ldpath = stdenv.lib.makeLibraryPath libs;
|
|
||||||
|
|
||||||
|
let
|
||||||
desktopItem = makeDesktopItem {
|
desktopItem = makeDesktopItem {
|
||||||
name = "dropbox";
|
name = "dropbox";
|
||||||
exec = "dropbox";
|
exec = "dropbox";
|
||||||
@ -61,93 +27,37 @@ let
|
|||||||
categories = "Network;FileTransfer;";
|
categories = "Network;FileTransfer;";
|
||||||
startupNotify = "false";
|
startupNotify = "false";
|
||||||
};
|
};
|
||||||
|
in
|
||||||
|
|
||||||
in mkDerivation {
|
buildFHSUserEnv {
|
||||||
name = "dropbox-${version}";
|
name = "dropbox";
|
||||||
src = fetchurl {
|
|
||||||
name = "dropbox-${version}.tar.gz";
|
|
||||||
url = "https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.${arch}-${version}.tar.gz";
|
|
||||||
inherit sha256;
|
|
||||||
};
|
|
||||||
|
|
||||||
sourceRoot = ".dropbox-dist";
|
targetPkgs = pkgs: with pkgs; with xlibs; [
|
||||||
|
libICE libSM libX11 libXcomposite libXdamage libXext libXfixes libXrender
|
||||||
nativeBuildInputs = [ makeWrapper patchelf ];
|
libXxf86vm libxcb
|
||||||
buildInputs = libs;
|
curl dbus fontconfig freetype gcc glib gnutar libxml2 libxslt zlib
|
||||||
dontStrip = true; # already done
|
];
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
runHook preInstall
|
|
||||||
|
|
||||||
mkdir -p "$out/${appdir}"
|
|
||||||
cp -r --no-preserve=mode "dropbox-lnx.${arch}-${version}"/* "$out/${appdir}/"
|
|
||||||
|
|
||||||
# Vendored libraries interact poorly with our graphics drivers
|
|
||||||
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"
|
|
||||||
|
|
||||||
# Cannot use vendored Qt libraries due to problem with xkbcommon
|
|
||||||
rm "$out/${appdir}/"libQt5*.so.5
|
|
||||||
rm "$out/${appdir}/qt.conf"
|
|
||||||
rm -fr "$out/${appdir}/plugins"
|
|
||||||
|
|
||||||
|
extraInstallCommands = ''
|
||||||
mkdir -p "$out/share/applications"
|
mkdir -p "$out/share/applications"
|
||||||
cp "${desktopItem}/share/applications/"* $out/share/applications
|
cp "${desktopItem}/share/applications/"* $out/share/applications
|
||||||
|
|
||||||
mkdir -p "$out/share/icons"
|
|
||||||
ln -s "$out/${appdir}/images/hicolor" "$out/share/icons/hicolor"
|
|
||||||
|
|
||||||
mkdir -p "$out/bin"
|
|
||||||
RPATH="${ldpath}:$out/${appdir}"
|
|
||||||
chmod 755 $out/${appdir}/dropbox
|
|
||||||
makeWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \
|
|
||||||
--prefix LD_LIBRARY_PATH : "$RPATH"
|
|
||||||
|
|
||||||
|
|
||||||
rm $out/${appdir}/wmctrl
|
|
||||||
ln -s ${wmctrl}/bin/wmctrl $out/${appdir}/wmctrl
|
|
||||||
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preFixup = ''
|
runScript = writeScript "install-and-start-dropbox" ''
|
||||||
INTERP=$(cat $NIX_CC/nix-support/dynamic-linker)
|
if ! [ -d "$HOME/.dropbox-dist" ]; then
|
||||||
RPATH="${ldpath}:$out/${appdir}"
|
# Dropbox is not installed.
|
||||||
getType='s/ *Type: *\([A-Z]*\) (.*/\1/'
|
# Download and unpack the client. If a newer version is available,
|
||||||
find "$out/${appdir}" -type f -print | while read obj; do
|
# the client will update itself when run.
|
||||||
dynamic=$(readelf -S "$obj" 2>/dev/null | grep "DYNAMIC" || true)
|
curl '${installer}' | tar -C "$HOME" -x -z
|
||||||
if [[ -n "$dynamic" ]]; then
|
fi
|
||||||
|
exec "$HOME/.dropbox-dist/dropboxd"
|
||||||
if readelf -l "$obj" 2>/dev/null | grep "INTERP" >/dev/null; then
|
|
||||||
echo "patching interpreter path in $type $obj"
|
|
||||||
patchelf --set-interpreter "$INTERP" "$obj"
|
|
||||||
fi
|
|
||||||
|
|
||||||
type=$(readelf -h "$obj" 2>/dev/null | grep 'Type:' | sed -e "$getType")
|
|
||||||
if [ "$type" == "EXEC" ] || [ "$type" == "DYN" ]; then
|
|
||||||
|
|
||||||
echo "patching RPATH in $type $obj"
|
|
||||||
oldRPATH=$(patchelf --print-rpath "$obj")
|
|
||||||
patchelf --set-rpath "''${oldRPATH:+$oldRPATH:}$RPATH" "$obj"
|
|
||||||
|
|
||||||
else
|
|
||||||
|
|
||||||
echo "unknown ELF type \"$type\"; not patching $obj"
|
|
||||||
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
paxmark m $out/${appdir}/dropbox
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Online stored folders (daemon version)";
|
description = "Online stored folders (daemon version)";
|
||||||
homepage = http://www.dropbox.com;
|
homepage = http://www.dropbox.com/;
|
||||||
maintainers = with maintainers; [ ttuegel ];
|
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
|
maintainers = with maintainers; [ ttuegel ];
|
||||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -16520,7 +16520,7 @@ with pkgs;
|
|||||||
bittorrentSync14 = callPackage ../applications/networking/bittorrentsync/1.4.x.nix { };
|
bittorrentSync14 = callPackage ../applications/networking/bittorrentsync/1.4.x.nix { };
|
||||||
bittorrentSync20 = callPackage ../applications/networking/bittorrentsync/2.0.x.nix { };
|
bittorrentSync20 = callPackage ../applications/networking/bittorrentsync/2.0.x.nix { };
|
||||||
|
|
||||||
dropbox = libsForQt5.callPackage ../applications/networking/dropbox { };
|
dropbox = callPackage ../applications/networking/dropbox { };
|
||||||
|
|
||||||
dropbox-cli = callPackage ../applications/networking/dropbox-cli { };
|
dropbox-cli = callPackage ../applications/networking/dropbox-cli { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user