nix: disable chroot on Darwin to avoid Xcode issues
Fixes: ``` xcodebuild: Operation not permitted ``` Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
0048b70466
commit
d70d3cdf8c
|
@ -49,4 +49,8 @@ pkgs.mkShell {
|
||||||
ANDROID_NDK=${androidSdk}/libexec/android-sdk/ndk-bundle
|
ANDROID_NDK=${androidSdk}/libexec/android-sdk/ndk-bundle
|
||||||
ANDROID_NDK_HOME=$ANDROID_NDK
|
ANDROID_NDK_HOME=$ANDROID_NDK
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Sandbox causes Xcode issues on MacOS. Requires sandbox=relaxed.
|
||||||
|
# https://github.com/status-im/status-mobile/pull/13912
|
||||||
|
__noChroot = pkgs.stdenv.isDarwin;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue