36 lines
1.4 KiB
Nix
36 lines
1.4 KiB
Nix
#
|
|
# This prepares status-go build file called Statusgo.xcframework for XCode.
|
|
# It copies the status-go build result to 'modules/react-native-status/ios/RCTStatus'.
|
|
#
|
|
|
|
{ lib, mkShell, status-go }:
|
|
|
|
let
|
|
targets = let
|
|
targetsString = lib.getEnvWithDefault "IOS_STATUS_GO_TARGETS" "ios/arm64;iossimulator/amd64";
|
|
in lib.splitString ";" targetsString;
|
|
in
|
|
mkShell {
|
|
shellHook = ''
|
|
export STATUS_GO_IOS_LIBDIR=${status-go { inherit targets; } }/Statusgo.xcframework
|
|
|
|
RCTSTATUS_DIR="$STATUS_MOBILE_HOME/modules/react-native-status/ios/RCTStatus"
|
|
targetBasename='Statusgo.xcframework'
|
|
|
|
# Compare target folder with source to see if copying is required
|
|
if [ -d "$RCTSTATUS_DIR/$targetBasename" ] && [ -d $STATUS_MOBILE_HOME/ios/Pods/ ] && \
|
|
diff -qr --no-dereference $RCTSTATUS_DIR/$targetBasename/ $STATUS_GO_IOS_LIBDIR/ > /dev/null; then
|
|
echo "$RCTSTATUS_DIR/$targetBasename already in place"
|
|
else
|
|
sourceBasename="$(basename $STATUS_GO_IOS_LIBDIR)"
|
|
echo "Copying $sourceBasename from Nix store to $RCTSTATUS_DIR"
|
|
rm -rf "$RCTSTATUS_DIR/$targetBasename/"
|
|
cp -a $STATUS_GO_IOS_LIBDIR $RCTSTATUS_DIR
|
|
chmod -R 755 "$RCTSTATUS_DIR/$targetBasename"
|
|
if [ "$sourceBasename" != "$targetBasename" ]; then
|
|
mv "$RCTSTATUS_DIR/$sourceBasename" "$RCTSTATUS_DIR/$targetBasename"
|
|
fi
|
|
fi
|
|
'';
|
|
}
|