about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-03-04 03:11:08 +0000
committerGitHub <noreply@github.com>2020-03-04 03:11:08 +0000
commit75f92125056b75daca37182dcc438a3fc52eb96a (patch)
tree82fe967c15db1e64773a344d01da9c75451b58d0 /pkgs/applications/networking/instant-messengers
parent8198f4ef0af7a2bc52e27a1eca095e66df6cac63 (diff)
parent33c04eac64f32eae3ca3c18c2a4785fd464ab105 (diff)
downloadnixlib-75f92125056b75daca37182dcc438a3fc52eb96a.tar
nixlib-75f92125056b75daca37182dcc438a3fc52eb96a.tar.gz
nixlib-75f92125056b75daca37182dcc438a3fc52eb96a.tar.bz2
nixlib-75f92125056b75daca37182dcc438a3fc52eb96a.tar.lz
nixlib-75f92125056b75daca37182dcc438a3fc52eb96a.tar.xz
nixlib-75f92125056b75daca37182dcc438a3fc52eb96a.tar.zst
nixlib-75f92125056b75daca37182dcc438a3fc52eb96a.zip
Merge pull request #81457 from lovesegfault/zoom-qtdep
zoom-us: add qtgraphicaleffects dependency
Diffstat (limited to 'pkgs/applications/networking/instant-messengers')
-rw-r--r--pkgs/applications/networking/instant-messengers/zoom-us/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
index 1a83a2f7cd96..d47368a9cb25 100644
--- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
+++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
@@ -2,8 +2,9 @@
 , fetchFromGitHub
 # Dynamic libraries
 , dbus, glib, libGL, libX11, libXfixes, libuuid, libxcb, qtbase, qtdeclarative
-, qtimageformats, qtlocation, qtquickcontrols, qtquickcontrols2, qtscript, qtsvg
-, qttools, qtwayland, qtwebchannel, qtwebengine
+, qtgraphicaleffects, qtimageformats, qtlocation, qtquickcontrols
+, qtquickcontrols2, qtscript, qtsvg , qttools, qtwayland, qtwebchannel
+, qtwebengine
 # Runtime
 , coreutils, libjpeg_turbo, pciutils, procps, utillinux
 , pulseaudioSupport ? true, libpulseaudio ? null
@@ -39,9 +40,9 @@ in mkDerivation {
   nativeBuildInputs = [ autoPatchelfHook ];
 
   buildInputs = [
-    dbus glib libGL libX11 libXfixes libuuid libxcb libjpeg_turbo
-    qtbase qtdeclarative qtlocation qtquickcontrols qtquickcontrols2 qtscript
-    qtwebchannel qtwebengine qtimageformats qtsvg qttools qtwayland
+    dbus glib libGL libX11 libXfixes libuuid libxcb libjpeg_turbo qtbase
+    qtdeclarative qtgraphicaleffects qtlocation qtquickcontrols qtquickcontrols2
+    qtscript qtwebchannel qtwebengine qtimageformats qtsvg qttools qtwayland
   ];
 
   runtimeDependencies = optional pulseaudioSupport libpulseaudio;