Naïm Favier
9160044f5f
treewide/makeWrapper: replace --run cd
with --chdir
...
Lay the groundwork for switching to binary wrappers by reducing uses
of `--run` (which is not supported by `makeBinaryWrapper`).
2022-03-19 09:46:31 +01:00
Clemens Lutz
ac0dbdcb93
zoom-us: 5.9.3.1911 -> 5.9.6.2225
2022-03-01 11:56:39 +01:00
Clemens Lutz
940737fcf4
zoom-us: 5.9.1.1380 -> 5.9.3.1911
2022-01-26 17:20:38 +01:00
Clemens Lutz
958754bfd5
zoom-us: 5.8.6.739 -> 5.9.1.1380
2022-01-06 13:48:59 +01:00
Clemens Lutz
371082920f
zoom-us: 5.8.4.210 -> 5.8.6.739
2021-11-29 14:51:39 +01:00
Clemens Lutz
194628e404
zoom-us: 5.8.3.145 -> 5.8.4.210
2021-11-16 17:51:54 +01:00
Sandro
d1178df192
Merge pull request #143154 from LutzCle/zoom-updater
2021-10-27 22:20:21 +02:00
Clemens Lutz
fff46a0fd9
zoom-us: 5.8.0.16 -> 5.8.3.145
2021-10-27 15:30:58 +02:00
Clemens Lutz
066018f6e1
zoom-us: Update updater script for new Zoom version syntax
...
Since version 5.8.0 (16) the zoom.us version naming scheme has changed.
Instead of x.y.z (a.b), the new scheme is x.y.z (a).
This commit adapts the awk script to extract versions from the new
naming scheme.
2021-10-27 15:23:07 +02:00
Clemens Lutz
54c3a9d6f8
zoom-us: 5.7.31792.0820 -> 5.8.0.16
2021-09-22 15:26:14 +02:00
Emmanuel Rosa
5bb77e3ad9
zoom-us: 5.7.29123.0808 -> 5.7.31792.0820
2021-08-23 15:27:44 +07:00
Doron Behar
f48b16f452
Merge pull request #133934 from r-ryantm/auto-update/zoom
2021-08-14 14:48:08 +00:00
R. RyanTM
cc7a5e69e3
zoom-us: 5.7.28991.0726 -> 5.7.29123.0808
2021-08-14 10:17:03 +00:00
Thomas Tuegel
445f8c544c
zoom-us: Do not apply screen scaling twice
2021-08-10 11:34:49 -05:00
Sandro Jäckel
5f979164a7
zoom-us: format, cleanup
2021-08-05 15:33:44 +02:00
Vanilla
8d3fd95037
zoom-us: 5.7.28852.0718 -> 5.7.28991.0726
2021-08-05 20:20:43 +08:00
Angus Trau
c2461f0d67
zoom-us: 5.7.26030.0627 -> 5.7.28852.0718
2021-07-25 17:14:03 +10:00
InternetUnexplorer
e0eb4293ea
zoom-us: 5.6.22045.0607 -> 5.7.26030.0627
2021-07-10 12:37:01 -07:00
Bernardo Meurer
0fe6e98a78
Merge pull request #126352 from LutzCle/zoom
...
zoom-us: 5.6.20278.0524 -> 5.6.22045.0607
2021-06-10 17:45:20 +00:00
AndersonTorres
e9e5f5f84d
Change all alsaLib references to alsa-lib
2021-06-10 01:12:49 -03:00
Clemens Lutz
7c2e0cc2f7
zoom-us: 5.6.20278.0524 -> 5.6.22045.0607
2021-06-09 13:32:25 +02:00
Clemens Lutz
c69b9cee04
zoom-us: 5.6.16888.0424 -> 5.6.20278.0524
2021-06-04 17:10:15 +02:00
Sandro
163c74938c
Merge pull request #121272 from ymatsiuk/bumpzoom
...
zoom-us: 5.6.16775.0418 -> 5.6.16888.0424
2021-05-03 16:57:16 +02:00
Bjørn Forsman
13cadfac15
zoom-us: fix overriding source
...
Without this using .overrideAttrs to change the source still uses the
old source.
2021-05-02 17:38:55 +02:00
Yurii Matsiuk
e7835da83f
zoom-us: 5.6.16775.0418 -> 5.6.16888.0424
2021-04-30 15:27:43 +02:00
Doron Behar
479c35d956
zoom-us: Use tarball again
...
This partially reverts commit 50a7cb2cfb
,
Not related to #120226 .
2021-04-22 19:51:42 +03:00
Clemens Lutz
50a7cb2cfb
zoom-us 5.6.13632.0328 -> 5.6.16775.0418
2021-04-21 09:21:23 +02:00
Julius de Bruijn
f066fe45a1
zoom-us 5.5.7938.0228 -> 5.6.13632.0328
2021-03-30 23:06:50 +02:00
Jörg Thalheim
776f482e02
zoom-us: remove qttools
...
this is a left-over when we used nixpkgs's qt instead of the bundled version
2021-03-15 19:41:57 +01:00
Yarny0
b747aa0f9f
zoom-us: unset Qt env variables to fix dialog boxes
...
Zoom wouldn't show the "Participants"
dialog box when used in a plasma environment;
precisely, the dialog box failed to show its content.
The problem doesn't exist in other
environments like Gnome or Xfce.
Experiments have shown that clearing the environment variable
`QML2_IMPORT_PATH` before calling Zoom fixes the issue.
I suspect the reason to be as follows:
While the zoom build recipe is called with
`libsForQt5xx.callPackage`, putting `qttools.dev` in zoom's
`PATH` is the only connection to nixpkgs' Qt ecosystem.
Zoom brings its own Qt libraries.
Hence it seems to be a good idea to shield
zoom from access to nixpkgs' Qt files to avoid
problems from version mismatch or similar troubles.
So the commit at hand expands zoom's wrapper script
to clear the Qt-related enviornemt variables
`QML2_IMPORT_PATH` and `QT_PLUGIN_PATH`.
Original issue report, with some discussion:
https://github.com/NixOS/nixpkgs/issues/107495#issuecomment-764538071
2021-03-14 23:05:47 +01:00
Doron Behar
132d954d35
zoom-us: 5.5.7011.0206 → 5.5.7938.0228
2021-03-04 14:09:35 +02:00
Doron Behar
d0853a745c
zoom-us: set src pname and version for update script
...
Cleanup unused arguments.
2021-03-04 14:09:35 +02:00
Ron B
a21a3bd848
zoom-us: 5.5.6981.0202 -> 5.5.7011.0206
2021-02-08 13:35:45 +02:00
Markus Hauck
11daaf463c
zoom-us: 5.4.57862.0110 -> 5.5.6981.0202
2021-02-05 09:15:26 +01:00
Doron Behar
6d9570e9f1
zoom-us: Make update script get exact version
...
Their website has changed the format in which they display the version,
into something a bit more sophisticated.
2021-01-20 12:47:53 +02:00
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