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