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