tor-browser: add missing libGL required for wayland

This commit is contained in:
Felix Schröter 2023-11-25 14:25:22 +01:00
parent 1fb123914b
commit 2c477ed32d
No known key found for this signature in database
GPG Key ID: 671E39E6744C807D

View File

@ -31,6 +31,7 @@
, waylandSupport ? stdenv.isLinux
, libxkbcommon
, libdrm
, libGL
, audioSupport ? mediaSupport
@ -98,7 +99,7 @@ lib.warnIf (useHardenedMalloc != null)
stdenv.cc.libc
zlib
] ++ lib.optionals libnotifySupport [ libnotify ]
++ lib.optionals waylandSupport [ libxkbcommon libdrm ]
++ lib.optionals waylandSupport [ libxkbcommon libdrm libGL ]
++ lib.optionals pipewireSupport [ pipewire ]
++ lib.optionals pulseaudioSupport [ libpulseaudio ]
++ lib.optionals libvaSupport [ libva ]