overrideSDK: fix on aarch64-darwin (#340131)

This commit is contained in:
Philip Taron 2024-09-06 14:01:44 -07:00 committed by GitHub
commit d89b0969ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;