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