flake: update for Xcode 16.0

This commit is contained in:
Michael Roitzsch
2024-06-28 14:48:17 +02:00
parent 305fe81fa6
commit bfc608e30e
2 changed files with 8 additions and 5 deletions
+5 -2
View File
@@ -21,8 +21,11 @@
outputs = { self, nixpkgs, acextract, command-line, dsc-extractor, snap-util }: {
packages.x86_64-darwin = let
xcode = (nixpkgs.legacyPackages.x86_64-darwin.xcodeenv.composeXcodeWrapper {
version = "15.2";
}).overrideAttrs (attrs: { __noChroot = true; });
version = "16.0";
}).overrideAttrs (attrs: { buildCommand = ''
# see https://github.com/NixOS/nixpkgs/pull/322641
set +o pipefail
'' + attrs.buildCommand; });
in {