From c3a86691ba8aebe32cedbfc72e3b738f2bf93a1f Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Tue, 15 Jul 2025 15:01:07 +0200 Subject: [PATCH] zoom-us: drop `extraPreBwrapCmds` (`QT_PLUGIN_PATH` & `LANG`) References/History: * `unset LANG` was introduced in 69ec89cd7a7a264fd55c6f1e8321d14ade9171df https://github.com/NixOS/nixpkgs/pull/410244 for version 6.4.10.*, to restore the visually broken settings dialog. It seems no longer necessary as of version 6.5.1, cf. https://github.com/NixOS/nixpkgs/pull/419757#pullrequestreview-2959221263 * `unset QT_PLUGIN_PATH` was introduced in b747aa0f9fd6363975e90a82210275a12bfbb696 https://github.com/NixOS/nixpkgs/pull/116355 for version 5.5.7938.0228, to fix the display of the "Participants" list. In recent versions, it ensured that the avatar icons of persons (conference and team chat "Participants") are displayed correctly. It seems no longer necessary as of version 6.5.3.*, cf. https://github.com/NixOS/nixpkgs/pull/422532#pullrequestreview-2989636069 --- pkgs/by-name/zo/zoom-us/package.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/by-name/zo/zoom-us/package.nix b/pkgs/by-name/zo/zoom-us/package.nix index 3c82cb82ff13..1e5ed8f386d8 100644 --- a/pkgs/by-name/zo/zoom-us/package.nix +++ b/pkgs/by-name/zo/zoom-us/package.nix @@ -245,10 +245,6 @@ let version = versions.${system} or throwSystem; targetPkgs = pkgs: (linuxGetDependencies pkgs) ++ [ unpacked ]; - extraPreBwrapCmds = '' - unset QT_PLUGIN_PATH - unset LANG # would break settings dialog on non-"en_XX" locales - ''; extraBwrapArgs = [ "--ro-bind ${unpacked}/opt /opt" ]; runScript = "/opt/zoom/ZoomLauncher";