mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
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
This commit is contained in:
parent
8c7f9beef4
commit
854638ea29
@ -5,7 +5,7 @@
|
||||
, qtimageformats, qtlocation, qtquickcontrols, qtquickcontrols2, qtscript, qtsvg
|
||||
, qttools, qtwayland, qtwebchannel, qtwebengine
|
||||
# Runtime
|
||||
, coreutils, libjpeg_turbo, pciutils, procps, utillinux, libv4l
|
||||
, coreutils, libjpeg_turbo, pciutils, procps, utillinux
|
||||
, pulseaudioSupport ? true, libpulseaudio ? null
|
||||
}:
|
||||
|
||||
@ -101,7 +101,6 @@ in mkDerivation {
|
||||
|
||||
qtWrapperArgs = [
|
||||
''--prefix PATH : ${makeBinPath [ coreutils glib.dev pciutils procps qttools.dev utillinux ]}''
|
||||
''--prefix LD_PRELOAD : ${libv4l}/lib/libv4l/v4l2convert.so''
|
||||
# --run "cd ${placeholder "out"}/share/zoom-us"
|
||||
# ^^ unfortunately, breaks run arg into multiple array elements, due to
|
||||
# some bad array propagation. We'll do that in bash below
|
||||
|
Loading…
Reference in New Issue
Block a user