Make path to Xcode configurable

This commit is contained in:
Sander van der Burg
2014-10-02 15:49:33 +02:00
parent f9347cfbb0
commit 470007e7e1
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
{stdenv, version ? "5.0"}:
{stdenv, version ? "5.0", xcodeBaseDir ? "/Applications/Xcode.app"}:
rec {
xcodewrapper = import ./xcodewrapper.nix {
inherit stdenv version;
inherit stdenv version xcodeBaseDir;
};
buildApp = import ./build-app.nix {