Skip to content

Commit

Permalink
fix_:override apple_sdk to use version 11.0 for macOS builds
Browse files Browse the repository at this point in the history
- Updated overlay.nix to override the default `apple_sdk` version for macOS builds.
- Resolved issue with missing component of SDK in x86_64 builds by setting `darwin.apple_sdk` to `apple_sdk_11_0`.
  • Loading branch information
mendelskiv93 committed Sep 29, 2024
1 parent 1e8b012 commit 664a743
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nix/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,7 @@ in rec {
})
];
}));

# Override darwin.apple_sdk globally
darwin.apple_sdk = prev.darwin.apple_sdk_11_0;
}

0 comments on commit 664a743

Please sign in to comment.