Skip to content

Commit

Permalink
flake: workaround stdenv bug
Browse files Browse the repository at this point in the history
  • Loading branch information
codyps committed Jul 4, 2024
1 parent a0427a3 commit 01d864a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
inherit system;
});
lib = pkgs.lib;
stdenv = apple_sdk.stdenv;
stdenv = if pkgs.stdenv.isDarwin then apple_sdk.stdenv else pkgs.stdenv;

# Not sure we need the newer sdk, but let's avoid weird issues with
# having different apple_sdk versions on x86_64 vs aarch64.
Expand Down

0 comments on commit 01d864a

Please sign in to comment.