2018-11-17 23:55:49 +03:00
|
|
|
{stdenv}:
|
2019-11-11 02:17:47 +03:00
|
|
|
{version ? "11.1", xcodeBaseDir ? "/Applications/Xcode.app"}:
|
2018-11-17 23:55:49 +03:00
|
|
|
|
|
|
|
assert stdenv.isDarwin;
|
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
|
2017-01-25 18:56:55 +03:00
|
|
|
ln -s /usr/bin/xcrun
|
2018-11-17 23:55:49 +03:00
|
|
|
ln -s /usr/bin/plutil
|
2019-02-05 00:43:48 +03:00
|
|
|
ln -s /usr/bin/clang
|
2019-03-11 01:18:08 +03:00
|
|
|
ln -s /usr/bin/lipo
|
|
|
|
ln -s /usr/bin/file
|
|
|
|
ln -s /usr/bin/rev
|
2014-10-02 17:49:33 +04:00
|
|
|
ln -s "${xcodeBaseDir}/Contents/Developer/usr/bin/xcodebuild"
|
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
|
|
|
|
'';
|
|
|
|
}
|