Skip to content

Commit

Permalink
feat: bump Xcode version
Browse files Browse the repository at this point in the history
  • Loading branch information
birros committed Dec 12, 2024
1 parent 31a590a commit 71638a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
run: nix config show

- name: Xcode version
run: /Applications/Xcode_16.0.0.app/Contents/Developer/usr/bin/xcodebuild -version
run: /Applications/Xcode_16.1.0.app/Contents/Developer/usr/bin/xcodebuild -version

# See ${workspace}/nix/overlays/xcode.md
- name: Set up Xcode in Nix store
run: |
XCODE_APP=$(realpath /Applications/Xcode_16.0.0.app)
XCODE_APP=$(realpath /Applications/Xcode_16.1.0.app)
NIX_STORE_PATH="/nix/store/9irb2b36sn0693q7x2l554inm81vb2g6-Xcode.app"
HASH="sha256:e3ebfbc4f45488d6a8dd950d03da2d23a23659f490b440f5f59f8c28dbe5282e"
Expand Down
6 changes: 3 additions & 3 deletions nix/overlays/xcode.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
final: prev: {
darwin = prev.darwin.overrideScope (
final: prev: {
xcode_16_0 = prev.xcode.overrideAttrs (prev: {
outputHash = "sha256-4+v7xPRUiNao3ZUNA9otI6I2WfSQtED19Z+MKNvlKC4=";
xcode_16_1 = prev.xcode.overrideAttrs (prev: {
outputHash = "sha256-1jyRJVyOmGA7fxRwBnxSJatnOFDu01RJ9aAQXJNuWBw=";
});
xcode = final.xcode_16_0;
xcode = final.xcode_16_1;
}
);
}

0 comments on commit 71638a3

Please sign in to comment.