2014-10-02 17:49:33 +04:00
|
|
|
{stdenv, version, xcodeBaseDir}:
|
2013-01-07 19:52:42 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xcode-wrapper-"+version;
|
|
|
|
buildCommand = ''
|
2014-06-30 16:56:10 +04:00
|
|
|
mkdir -p $out/bin
|
2013-01-07 19:52:42 +04:00
|
|
|
cd $out/bin
|
|
|
|
ln -s /usr/bin/xcode-select
|
|
|
|
ln -s /usr/bin/security
|
2013-10-15 18:32:38 +04:00
|
|
|
ln -s /usr/bin/codesign
|
2014-10-02 17:49:33 +04:00
|
|
|
ln -s "${xcodeBaseDir}/Contents/Developer/usr/bin/xcodebuild"
|
|
|
|
ln -s "${xcodeBaseDir}/Contents/Developer/usr/bin/xcrun"
|
2016-01-07 17:43:17 +03:00
|
|
|
ln -s "${xcodeBaseDir}/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator"
|
2013-01-07 19:52:42 +04:00
|
|
|
|
2013-08-16 15:20:59 +04:00
|
|
|
cd ..
|
2014-10-02 17:49:33 +04:00
|
|
|
ln -s "${xcodeBaseDir}/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs"
|
2013-08-16 15:20:59 +04:00
|
|
|
|
2013-01-07 19:52:42 +04:00
|
|
|
# Check if we have the xcodebuild version that we want
|
2013-12-24 17:34:56 +04:00
|
|
|
if [ -z "$($out/bin/xcodebuild -version | grep -x 'Xcode ${version}')" ]
|
2013-01-07 19:52:42 +04:00
|
|
|
then
|
|
|
|
echo "We require xcodebuild version: ${version}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
}
|