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.
This commit is contained in:
Randy Eckenrode
2024-10-10 01:13:59 -04:00
parent 4ec8351095
commit 0725c33a50
+1 -5
View File
@@ -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
{