lol

qt6.qtwebengine: fix QtWebEngine build crash

QtWebEngine tries to build with clang 14, which links libc++ 14, but the
top-level libc++ on Dariwn is libc++ 16. This results in a crash during
the build, which is fixed by building with the default stdenv.

+1 -3
+1 -1
pkgs/development/libraries/qt-6/default.nix
··· 141 141 qtwebchannel = callPackage ./modules/qtwebchannel.nix { }; 142 142 qtwebengine = callPackage ./modules/qtwebengine.nix { 143 143 inherit (darwin) bootstrap_cmds cctools xnu; 144 - inherit (darwin.apple_sdk_11_0) libpm libunwind llvmPackages_14; 144 + inherit (darwin.apple_sdk_11_0) libpm libunwind; 145 145 inherit (darwin.apple_sdk_11_0.libs) sandbox; 146 146 inherit (darwin.apple_sdk_11_0.frameworks) 147 147 AGL AVFoundation Accelerate Cocoa CoreLocation CoreML ForceFeedback
-2
pkgs/development/libraries/qt-6/modules/qtwebengine.nix
··· 60 60 , mesa 61 61 , enableProprietaryCodecs ? true 62 62 # darwin 63 - , llvmPackages_14 64 63 , bootstrap_cmds 65 64 , cctools 66 65 , xcbuild ··· 106 105 gn 107 106 nodejs 108 107 ] ++ lib.optionals stdenv.isDarwin [ 109 - llvmPackages_14.clang 110 108 bootstrap_cmds 111 109 cctools 112 110 xcbuild