1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

overrideSDK: fix on aarch64-darwin

I don’t want to talk about it.

Fixes QEMU.
This commit is contained in:
Emily 2024-09-06 16:43:14 +01:00
parent dba9a4798d
commit f69ba1fed5

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;