Skip to content

Commit

Permalink
stdenv/darwin: use 10.16 for aarch64
Browse files Browse the repository at this point in the history
10.16 is the only sdk we have available for aarch64 so use that.
Hopefully we can update x86_64 to it soon too.
  • Loading branch information
matthewbauer committed Dec 8, 2020
1 parent ae431e1 commit cd92ef3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/stdenv/darwin/default.nix
@@ -1,9 +1,9 @@
{ lib
, localSystem, crossSystem, config, overlays, crossOverlays ? []
# The version of darwin.apple_sdk used for sources provided by apple.
, appleSdkVersion ? "10.12"
, appleSdkVersion ? if localSystem.isAarch64 then "10.16" else "10.12"
# Minimum required macOS version, used both for compatibility as well as reproducability.
, macosVersionMin ? "10.12"
, macosVersionMin ? if localSystem.isAarch64 then "10.16" else "10.12"
# Allow passing in bootstrap files directly so we can test the stdenv bootstrap process when changing the bootstrap tools
, bootstrapFiles ?
if localSystem.isAarch64 then
Expand Down

0 comments on commit cd92ef3

Please sign in to comment.