overrideSDK: fix on aarch64-darwin (#340131)

This commit is contained in:
Philip Taron
2024-09-06 14:01:44 -07:00
committed by GitHub
+6
View File
@@ -66,6 +66,12 @@ let
original = pkgs.darwin.apple_sdk.Libsystem;
replacement = sdk.Libsystem;
}
# This is different to `pkgs.darwin.apple_sdk.Libsystem` on `aarch64-darwin`.
# Isnt that neat? I think thats neat. Dont do macOS SDKs like this.
{
original = pkgs.darwin.Libsystem;
replacement = sdk.Libsystem;
}
# Make sure darwin.CF is mapped to the correct version for the SDK.
{
original = pkgs.darwin.CF;