summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/xcode
Commit message (Collapse)AuthorAge
* lib/systems: use newer ios sdkMatthew Bauer2020-01-03
|
* xcode: don’t use libstdc++ on iOSMatthew Bauer2020-01-03
| | | | Apple no longer ships with it, so best to avoid forcing it into use.
* xcode: Add more hashes, and fix some old onesJohn Ericson2020-01-03
|
* treewide: remove redundant quotesvolth2019-08-26
|
* [treewide] delete unused patchesc0bw3b2019-05-04
|
* xcode-sdk-pkgs: add sdk to extraPackagesMatthew Bauer2019-03-09
| | | | this gives you access to libraries like Foundation.
* darwin.xcode: update hashesMatthew Bauer2019-01-25
|
* treewide: Remove usage of remaining redundant platform compatability stuffJohn Ericson2018-08-30
| | | | | Want to get this out of here for 18.09, so it can be deprecated thereafter.
* pkgs/*: remove unreferenced function argumentsvolth2018-07-21
|
* xcode: default to 8.2Matthew Bauer2018-06-28
| | | | | There is some weird issue with 9.4 that needs to be resolved. 8.2 is used by iOS anyway so that makes it easier.
* xcode: add xcodePlatform to systemMatthew Bauer2018-06-25
| | | | | This give us a little bit more control over what target we are using. Eventually we can target other things like WatchOS or MacOS.
* xcode: add xcodeVer to systemMatthew Bauer2018-06-25
| | | | | This version number controls which xcode version to use when building cross to iOS.
* xcode: add 9.4 sdkMatthew Bauer2018-06-21
| | | | | | | | This is the newest sdk. I have skipped 9.3 for now but someone can certainly add it if they need it for some reason. Also I added a generic "xcode" that will always point to the newest xcode that is available in Nixpkgs.
* xcode: update Xcode URLMatthew Justin Bauer2018-06-08
| | | | | Apple has changed this location. Now the url should look like: https://developer.apple.com/services-account/download?path=/Developer_Tools/Xcode_8.2/Xcode_8.2.xip
* xcode: remove extra quote from message (#41286)Alexandre Esteves2018-05-30
|
* Use requireFile for impure Xcode dependencyAlexandre Esteves2018-05-23
|
* pkgs: refactor needless quoting of homepage meta attribute (#27809)Silvan Mosberger2017-08-01
| | | | | | | | | | | | * pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
* Another attempt to eradicate ensureDirEelco Dolstra2014-06-30
| | | | See c556a6ea46e71e1907d78b71fab36df30297b3ad.
* xcode: fix hashJaka Hudoklin2014-04-01
|
* xcode: Update to new version 5.1.aszlig2014-03-12
| | | | | | | | This version just got released two days ago, while we were working for cross-builds on 5.0.2. From the release notes it shouldn't introduce any incompatibilities. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* xcode: Drop use of weak_import on enumerators.aszlig2014-03-12
| | | | | | | | | | GCC doesn't support attributes on enumerators, which could pose a problem but fortunately not in this case. Here a __attribute__((weak_import)) is used, which doesn't make much sense for enumerators anyway (noone will die because the corresponding enumerator won't be referenced either in older OS X versions). Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* xcode: Provide the commandline toolchain as well.aszlig2014-03-12
| | | | | | | | This toolchain contains Mach-O binaries and might not be useful in the first place, but there are programs like dsymutil, where Apple didn't release the source code, so we need a Mach-O loader... Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* Add new package for Apple's XCode.aszlig2014-03-12
This package provides the SDK and standard library needed for cross-compiling to Mac US X. We're using xpwn here to extract the DMG. Also, this version (XCode 5.0.2) only contains the SDKs for version 10.9 and 10.8, so we might need to add requireFile directives for older versions as well. Signed-off-by: aszlig <aszlig@redmoonstudios.org>