Merge pull request #268715 from 999eagle/fix/chromium-wayland

chromium: add libglvnd to rpath

authored by Emily and committed by GitHub cdfc4c54 af76d9e3

+2 -1
+2 -1
pkgs/applications/networking/browsers/chromium/common.nix
··· 47 47 , glibc # gconv + locale 48 48 # postFixup: 49 49 , vulkan-loader 50 + , libglvnd 50 51 51 52 # Package customization: 52 53 , cupsSupport ? true, cups ? null ··· 479 480 # libpci (from pciutils) is needed by dlopen in angle/src/gpu_info_util/SystemInfo_libpci.cpp 480 481 chromiumBinary="$libExecPath/$packageName" 481 482 origRpath="$(patchelf --print-rpath "$chromiumBinary")" 482 - patchelf --set-rpath "${lib.makeLibraryPath [ libGL vulkan-loader pciutils ]}:$origRpath" "$chromiumBinary" 483 + patchelf --set-rpath "${lib.makeLibraryPath [ libGL libglvnd vulkan-loader pciutils ]}:$origRpath" "$chromiumBinary" 483 484 ''; 484 485 485 486 passthru = {