From a01acea9d26943263e292da9fee58fe0e7824e72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Qui=C3=B1ones?= Date: Sat, 19 Apr 2025 00:30:43 -0500 Subject: [PATCH] feat(package): add libGL as a runtime dependency (#51) Add libGL to ensure proper runtime support for OpenGL. Without this dependency, the browser logs errors related to missing GL libraries at startup. --- package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.nix b/package.nix index 26b6e12..e01f992 100644 --- a/package.nix +++ b/package.nix @@ -14,6 +14,7 @@ gtk3, libXtst, libva, + libGL, pciutils, pipewire, adwaita-icon-theme, @@ -71,8 +72,10 @@ in curl libva.out pciutils + libGL ]; appendRunpaths = [ + "${libGL}/lib" "${pipewire}/lib" ]; # Firefox uses "relrhack" to manually process relocations from a fixed offset