From 91c347f6f5cd50f4f78fea5c40cb4df792d92540 Mon Sep 17 00:00:00 2001 From: Siddarth Kumar Date: Wed, 15 May 2024 13:08:31 +0530 Subject: [PATCH] chore: include Xcode 15.2 in allowed versions list (#20021) ## Summary As reported by @ajayesivan and @seanstrom `Xcode 15.2` worked in their local environments and I then tried to use that version and found no issues with it. This commit adds `Xcode 15.2` to versions list in Xcode Wrapper `nix` derivation. ## Testing notes not needed. ## Platforms - iOS status: ready --- nix/overlay.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/overlay.nix b/nix/overlay.nix index ec42272597..5e568be557 100644 --- a/nix/overlay.nix +++ b/nix/overlay.nix @@ -57,7 +57,7 @@ in { yarn = super.yarn.override { nodejs = super.nodejs-18_x; }; openjdk = super.openjdk11_headless; xcodeWrapper = callPackage ./pkgs/xcodeenv/compose-xcodewrapper.nix { } { - versions = ["15.1"]; + versions = ["15.1" "15.2"]; }; go = super.go_1_20; clang = super.clang_15;