mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-25 16:10:18 +00:00
Jakub Sokołowski
1f7fd17ff1
This way the name of the repo makes at least some sense and matches the `status-desktop` repo naming. Also updated `status-jenkins-lib` since it also contained references to `status-react` repo and job names. Signed-off-by: Jakub Sokołowski <jakub@status.im>
25 lines
661 B
Nix
25 lines
661 B
Nix
{ mkShell, cocoapods }:
|
|
|
|
let
|
|
# source of what pod should install
|
|
podfileLock = "ios/Podfile.lock";
|
|
# current state of pods installed by pod
|
|
manifestLock = "ios/Pods/Manifest.lock";
|
|
in mkShell {
|
|
buildInputs = [ cocoapods ];
|
|
shellHook = ''
|
|
pushd "$STATUS_MOBILE_HOME" > /dev/null
|
|
{
|
|
echo "Checking for modifications in ios/Pods..."
|
|
if diff -q ${podfileLock} ${manifestLock}; then
|
|
echo "No modifications detected."
|
|
else
|
|
# CocoaPods are trash and can't handle other pod instances running
|
|
./scripts/wait-for.sh 240 'pod install'
|
|
(cd ios && pod install)
|
|
fi
|
|
}
|
|
popd > /dev/null
|
|
'';
|
|
}
|