Commit graph

93 commits

Author SHA1 Message Date
Jörg Thalheim 0c4d9566f1
zoom-us: 5.4.53350.1027 -> 5.4.57862.0110
Replacing zooms qt library has led to incompatibilities between
qt versions used in Nix and zoom. The new approach just sets
LD_LIBRARY_PATH. LD_LIBRARY_PATH is also used internally by zoom
for its own vendored library.

The package has been tested end-to-end in a meeting.
2021-01-17 06:52:09 +01:00
Ben Siraphob 108bdac3d9 pkgs/applications: stdenv.lib -> lib 2021-01-15 14:24:03 +07:00
Graham Christensen bc49a0815a
utillinux: rename to util-linux 2020-11-24 12:42:06 -05:00
gnidorah d3521527b4 zoom-us: support alsa 2020-11-12 04:10:14 +03:00
Jon Roberts ca6dc68153
zoom-us: 5.3.469451.0927 -> 5.4.53350.1027 2020-10-29 13:13:09 -05:00
Pavol Rusnak fe35b97d91
zoom-us: 5.3.465578.0920 -> 5.3.469451.0927 2020-10-04 16:14:39 +02:00
Graham Bennett 4d9e297272 zoom-us: 5.2.458699.0906 -> 5.3.465578.0920 2020-09-22 21:24:35 +01:00
Amit Aryeh Levy 3d9adca641 zoom-us: 5.2.454870.0831 -> 5.2.458699.0906 2020-09-09 16:20:29 -07:00
Amit Aryeh Levy 548ded0ad5 zoom-us: 5.2.446620.0816 -> 5.2.454870.0831
thanks to @doronbehar for changes to update script
2020-09-01 15:44:34 -07:00
Amit Aryeh Levy 71ac9f191a zoom-us: 5.1.422789.0705 -> 5.2.446620.0816 2020-09-01 15:41:13 -07:00
Tiago Castro 9e6fb1dcd7 zoom-us: use libturbojpeg from the zoom-us tar itself 2020-07-28 00:13:18 +01:00
Tad Fisher 903a0cac04
zoom-us: Link libfaac to fix audio recording (#93374)
Fixes #93341.

Using strace reveals that zoom is attempting to load "libfaac1.so" from
its PATH. As faac provides "libfaac.so.0", solve this by linking from
there to "libfaac1.so" in zoom's output.

This is the same solution as the one we use for libjpeg_turbo.
2020-07-18 19:38:58 -04:00
Tim Steinbach d36cf57af7
zoom-us: 5.1.418436.0628 -> 5.1.422789.0705 2020-07-07 08:00:41 -04:00
Tim Steinbach a59fad3e35
zoom-us: 5.1.412382.0614 -> 5.1.418436.0628 2020-07-01 16:36:28 -04:00
Doron Behar 98dda1a838 zoom-us: 5.0.418682.0603 -> 5.1.412382.0614
Add @doronbehar as maintainer, and update list of files to install.
2020-06-18 10:22:00 +03:00
Tim Steinbach 2dc71847d9
zoom-us: 5.0.413237.0524 -> 5.0.418682.0603 2020-06-05 09:45:43 -04:00
Tim Steinbach 159ffc8304
zoom-us: 5.0.408598.0517 -> 5.0.413237.0524 2020-05-27 08:21:50 -04:00
Griffin Smith 38e85d3193 zoom-us: 5.0.403652.0509 -> 5.0.408598.0517 2020-05-19 10:04:30 -04:00
Bernardo Meurer 4e4f5cb925
zoom-us: 5.0.399860.0429 -> 5.0.403652.0509 2020-05-12 10:09:12 -07:00
Tim Steinbach c56c72b4f8
zoom-us: 5.0.398100.0427 -> 5.0.399860.0429 2020-04-30 10:07:49 -04:00
Bernardo Meurer de2b31490b
zoom-us: 3.5.385850.0413 -> 5.0.398100.0427 2020-04-28 13:52:28 -07:00
Tim Steinbach f6a53ee71f
zoom-us: 3.5.383291.0407 -> 3.5.385850.0413 2020-04-15 09:20:27 -04:00
Tim Steinbach c4c017f982
zoom-us: 3.5.374815.0324 -> 3.5.383291.0407 2020-04-08 08:51:08 -04:00
Tim Steinbach f47e15a63c
zoom-us: 3.5.372466.0322 -> 3.5.374815.0324 2020-03-25 13:06:02 -04:00
Tim Steinbach 66172a2ea4
zoom-us: 3.5.361976.0301 -> 3.5.372466.0322 2020-03-24 10:38:07 -04:00
worldofpeace 75f9212505
Merge pull request #81457 from lovesegfault/zoom-qtdep
zoom-us: add qtgraphicaleffects dependency
2020-03-04 03:11:08 +00:00
Tim Steinbach 1ccc73cd1f
zoom-us: 3.5.359539.0224 -> 3.5.361976.0301 2020-03-02 07:49:10 -05:00
Bernardo Meurer 33c04eac64
zoom-us: add qtgraphicaleffects dependency 2020-03-01 10:58:10 -08:00
Tim Steinbach 8f3f727e06
zoom-us: 3.5.359165.0223 -> 3.5.359539.0224 2020-02-26 11:45:29 -05:00
Tim Steinbach da84ff331b
zoom-us: 3.5.352596.0119 -> 3.5.359165.0223 2020-02-24 08:17:10 -05:00
Danylo Hlynskyi 854638ea29
zoom-us: fix launch (#80005)
zoom-us: fix launch

Probably due to glibc update, ZoomLauncher became broken when v4l is present in
LD_PRELOAD path. It can be fixed by a) removing ZoomLauncher from startup chain,
so `zoom` is started directly or b) removing v4l from LD_PRELOAD.

The reason v4l was added before was because my video was rotated upside down without it.
Seem like nowadays this is fixed by Zoom itself, so I'm removing it.

Fixes https://github.com/NixOS/nixpkgs/issues/79954

Co-authored-by: @mmlb
2020-02-14 16:16:02 +02:00
Tim Steinbach 62d86db572
zoom-us: 3.5.336627.1216 -> 3.5.352596.0119 2020-01-24 11:31:18 -05:00
danbst c379dc736e zoom-us: fix web login, and provide Qt wrapping for binaries
(but don't pollute environment)
2019-12-20 08:04:20 +02:00
Tim Steinbach 09c0b6af80
zoom-us: 3.5.330166.1202 -> 3.5.336627.1216 2019-12-16 11:14:35 -05:00
Tim Steinbach d674a64c85
zoom-us: 3.0.317369.1110 -> 3.5.330166.1202 2019-12-04 10:26:35 -05:00
John Ericson d0d5136cce Merge remote-tracking branch 'upstream/master' into wrapper-pname-support 2019-11-24 17:25:07 +00:00
John Ericson 9b090ccbca treewide: Get rid of most parseDrvName without breaking compat
That is because this commit should be merged to both master and
release-19.09.
2019-11-24 17:22:28 +00:00
Tim Steinbach 44c2cf69d9
zoom-us: 3.0.309708.1027 -> 3.0.317369.1110 2019-11-21 13:29:44 -05:00
Tim Steinbach 50a4b2d676
zoom-us: 3.0.306796.1020 -> 3.0.309708.1027 2019-10-29 09:20:57 -04:00
Tim Steinbach b1c21ad6f0
zoom-us: 3.0.303290.1010 -> 3.0.306796.1020 2019-10-21 07:32:23 -04:00
Tim Steinbach 91295f93fb
zoom-us: 3.0.301026.0930 -> 3.0.303290.1010 2019-10-12 11:12:54 -04:00
Tim Steinbach f5aaf1f958
zoom-us: 3.0.291715.0908 -> 3.0.301026.0930 2019-10-01 08:02:01 -04:00
Tim Steinbach 1d483896b1
zoom-us: 3.0.287250.0828 -> 3.0.291715.0908 2019-09-10 08:23:12 -04:00
Frederik Rietdijk fc74ba8291 Merge master into staging-next 2019-08-31 09:50:38 +02:00
Tim Steinbach 8116f653ff
zoom-us: 3.0.285090.0826 -> 3.0.287250.0828 2019-08-29 12:35:15 -04:00
Manuel Mendez 0ecbc63bf0 zoom-us: 2.9.265650.0716 -> 3.0.285090.0826 (#67588) 2019-08-28 11:01:23 +03:00
volth c814d72b51 treewide: name -> pname 2019-08-17 10:54:38 +00:00
worldofpeace 2d307238de zoom-us: drop uneeded *Inputs 2019-08-01 14:55:41 -04:00
worldofpeace 32f62e9798 zoom-us: use flathub desktop integration
We fetch from https://github.com/flathub/us.zoom.Zoom
and install their appdata, icons, and desktop file.
2019-08-01 14:55:41 -04:00
Tad Fisher aefe854bd3 zoom-us: use wrapQtAppsHook 2019-07-29 14:17:25 -07:00