Unverified Commit ab80059a authored by Randy Eckenrode's avatar Randy Eckenrode
Browse files

qt5.qtwebengine: drop overrideSDK

Qt is using the new Darwin SDK, which no longer requires overrideSDK to
change the SDK version or set the deployment target.
parent 4bb131ec
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -299,9 +299,7 @@ let
        #   starting with clang 16. Patches are available upstream that can be backported.
        # Because the first error is non-trivial to fix and suppressing it risks future breakage,
        # clang is pinned to clang 15. That also makes fixing the second set of errors unnecessary.
        stdenv =
          let stdenv' = if stdenv.cc.isClang then overrideLibcxx llvmPackages_15.stdenv else stdenv;
          in if stdenv'.hostPlatform.isDarwin then overrideSDK stdenv' "11.0" else stdenv';
        stdenv = if stdenv.cc.isClang then overrideLibcxx llvmPackages_15.stdenv else stdenv;
        inherit (srcs.qtwebengine) version;
        inherit (darwin) bootstrap_cmds;
        python = python3;