2018-07-20 17:44:44 -07:00
|
|
|
{pkgs, xcodeVersion ? "9.2", xcodeBaseDir ? "/Applications/Xcode.app", tiVersion ? "7.1.0.GA"}:
|
2013-01-07 09:22:10 -08:00
|
|
|
|
|
|
|
rec {
|
|
|
|
androidenv = pkgs.androidenv;
|
|
|
|
|
2018-08-20 12:11:29 -07:00
|
|
|
xcodeenv = if pkgs.stdenv.hostPlatform.system == "x86_64-darwin" then pkgs.xcodeenv.override {
|
2014-01-13 05:24:48 -08:00
|
|
|
version = xcodeVersion;
|
2014-10-07 09:13:52 -07:00
|
|
|
inherit xcodeBaseDir;
|
2014-01-13 05:24:48 -08:00
|
|
|
} else null;
|
2013-04-16 05:08:37 -07:00
|
|
|
|
2014-02-18 07:34:34 -08:00
|
|
|
titaniumsdk = let
|
2018-01-05 03:34:03 -08:00
|
|
|
titaniumSdkFile = if tiVersion == "6.3.1.GA" then ./titaniumsdk-6.3.nix
|
2018-03-20 09:22:32 -07:00
|
|
|
else if tiVersion == "7.1.0.GA" then ./titaniumsdk-7.1.nix
|
2014-02-18 07:34:34 -08:00
|
|
|
else throw "Titanium version not supported: "+tiVersion;
|
|
|
|
in
|
|
|
|
import titaniumSdkFile {
|
|
|
|
inherit (pkgs) stdenv fetchurl unzip makeWrapper python jdk;
|
|
|
|
};
|
2013-01-07 09:22:10 -08:00
|
|
|
|
|
|
|
buildApp = import ./build-app.nix {
|
2018-01-05 03:34:03 -08:00
|
|
|
inherit (pkgs) stdenv python which file jdk nodejs;
|
|
|
|
inherit (pkgs.nodePackages_6_x) alloy titanium;
|
2013-01-07 09:22:10 -08:00
|
|
|
inherit (androidenv) androidsdk;
|
|
|
|
inherit (xcodeenv) xcodewrapper;
|
2014-10-14 05:57:11 -07:00
|
|
|
inherit titaniumsdk xcodeBaseDir;
|
2013-01-07 09:22:10 -08:00
|
|
|
};
|
|
|
|
}
|