2018-07-12 20:03:56 +01:00
|
|
|
{ stdenv, fetchurl, system, makeWrapper, makeDesktopItem, autoPatchelfHook, env
|
2018-07-05 21:42:44 +01:00
|
|
|
# Dynamic libraries
|
|
|
|
, dbus, glib, libGL, libX11, libXfixes, libuuid, libxcb, qtbase, qtdeclarative
|
2018-07-12 20:03:56 +01:00
|
|
|
, qtimageformats, qtlocation, qtquickcontrols, qtquickcontrols2, qtscript, qtsvg
|
|
|
|
, qttools, qtwayland, qtwebchannel, qtwebengine
|
2018-07-05 21:42:44 +01:00
|
|
|
# Runtime
|
2018-07-12 20:03:56 +01:00
|
|
|
, coreutils, libjpeg_turbo, pciutils, procps, utillinux
|
2018-07-05 21:42:44 +01:00
|
|
|
, pulseaudioSupport ? true, libpulseaudio ? null
|
2018-06-30 18:03:17 +01:00
|
|
|
}:
|
2017-06-07 10:01:01 +01:00
|
|
|
|
2018-07-05 21:42:44 +01:00
|
|
|
assert pulseaudioSupport -> libpulseaudio != null;
|
|
|
|
|
2017-06-07 10:01:01 +01:00
|
|
|
let
|
2018-07-20 20:36:12 +01:00
|
|
|
inherit (stdenv.lib) concatStringsSep makeBinPath optional;
|
2017-06-07 10:01:01 +01:00
|
|
|
|
2018-08-16 18:02:12 +01:00
|
|
|
version = "2.3.128305.0716";
|
2017-06-07 10:01:01 +01:00
|
|
|
srcs = {
|
|
|
|
x86_64-linux = fetchurl {
|
|
|
|
url = "https://zoom.us/client/${version}/zoom_x86_64.tar.xz";
|
2018-08-16 18:02:12 +01:00
|
|
|
sha256 = "1jpw5sclr5bhif559hmnyiggjh6gkm1smiw34y3ad4k8xhag9dkh";
|
2017-06-07 10:01:01 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-07-12 20:03:56 +01:00
|
|
|
qtDeps = [
|
|
|
|
qtbase qtdeclarative qtlocation qtquickcontrols qtquickcontrols2 qtscript
|
|
|
|
qtwebchannel qtwebengine qtimageformats qtsvg qttools qtwayland
|
|
|
|
];
|
|
|
|
|
|
|
|
qtEnv = env "zoom-us-qt-${qtbase.version}" qtDeps;
|
|
|
|
|
2017-06-07 10:01:01 +01:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "zoom-us-${version}";
|
|
|
|
|
|
|
|
src = srcs.${system};
|
|
|
|
|
2018-06-30 18:03:17 +01:00
|
|
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
|
2017-06-07 10:01:01 +01:00
|
|
|
|
2018-06-30 18:03:17 +01:00
|
|
|
buildInputs = [
|
2018-07-12 20:03:56 +01:00
|
|
|
dbus glib libGL libX11 libXfixes libuuid libxcb qtEnv libjpeg_turbo
|
|
|
|
] ++ qtDeps;
|
2017-06-07 10:01:01 +01:00
|
|
|
|
2018-07-05 21:42:44 +01:00
|
|
|
runtimeDependencies = optional pulseaudioSupport libpulseaudio;
|
|
|
|
|
|
|
|
# Don't remove runtimeDependencies from RPATH via patchelf --shrink-rpath
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2018-06-30 18:03:17 +01:00
|
|
|
installPhase =
|
|
|
|
let
|
2018-07-05 21:42:44 +01:00
|
|
|
files = concatStringsSep " " [
|
2018-06-30 18:03:17 +01:00
|
|
|
"*.pcm"
|
|
|
|
"*.png"
|
|
|
|
"ZXMPPROOT.cer"
|
|
|
|
"ZoomLauncher"
|
|
|
|
"config-dump.sh"
|
|
|
|
"timezones"
|
|
|
|
"translations"
|
|
|
|
"version.txt"
|
|
|
|
"zcacert.pem"
|
|
|
|
"zoom"
|
|
|
|
"zoom.sh"
|
|
|
|
"zoomlinux"
|
|
|
|
"zopen"
|
|
|
|
];
|
|
|
|
in ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
packagePath=$out/share/zoom-us
|
|
|
|
mkdir -p $packagePath $out/bin
|
|
|
|
|
|
|
|
cp -ar ${files} $packagePath
|
|
|
|
|
2018-07-05 21:42:44 +01:00
|
|
|
# TODO Patch this somehow; tries to dlopen './libturbojpeg.so' from cwd
|
|
|
|
ln -s $(readlink -e "${libjpeg_turbo.out}/lib/libturbojpeg.so") $packagePath/libturbojpeg.so
|
|
|
|
|
2018-07-12 20:03:56 +01:00
|
|
|
ln -s ${qtEnv}/bin/qt.conf $packagePath
|
|
|
|
|
2018-06-30 18:03:17 +01:00
|
|
|
makeWrapper $packagePath/zoom $out/bin/zoom-us \
|
2018-07-12 20:03:56 +01:00
|
|
|
--prefix PATH : "${makeBinPath [ coreutils glib.dev pciutils procps qttools.dev utillinux ]}" \
|
2018-07-05 21:42:44 +01:00
|
|
|
--run "cd $packagePath"
|
2018-06-30 18:03:17 +01:00
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
2017-06-07 10:01:01 +01:00
|
|
|
|
2018-03-16 19:03:15 +00:00
|
|
|
postInstall = (makeDesktopItem {
|
|
|
|
name = "zoom-us";
|
|
|
|
exec = "$out/bin/zoom-us %U";
|
|
|
|
icon = "$out/share/zoom-us/application-x-zoom.png";
|
|
|
|
desktopName = "Zoom";
|
|
|
|
genericName = "Video Conference";
|
|
|
|
categories = "Network;Application;";
|
|
|
|
mimeType = "x-scheme-handler/zoommtg;";
|
|
|
|
}).buildCommand;
|
|
|
|
|
2018-06-30 18:03:17 +01:00
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
|
2017-06-07 10:01:01 +01:00
|
|
|
meta = {
|
2017-08-03 05:09:34 +01:00
|
|
|
homepage = https://zoom.us/;
|
2017-06-07 10:01:01 +01:00
|
|
|
description = "zoom.us video conferencing application";
|
|
|
|
license = stdenv.lib.licenses.unfree;
|
2017-08-03 04:53:46 +01:00
|
|
|
platforms = builtins.attrNames srcs;
|
2018-07-07 21:35:35 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ danbst tadfisher ];
|
2017-06-07 10:01:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|