Unverified Commit 0725c33a authored by Randy Eckenrode's avatar Randy Eckenrode
Browse files

qt6.stdenv: 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 4ec83510
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -26,11 +26,7 @@ let
    let
      callPackage = self.newScope ({
        inherit (self) qtModule;
        inherit srcs python3;
        stdenv =
          if stdenv.hostPlatform.isDarwin
          then overrideSDK stdenv { darwinMinVersion = "11.0"; darwinSdkVersion = "12.3"; }
          else stdenv;
        inherit srcs python3 stdenv;
      });
    in
    {