titaniumenv: upgrade to 6.3 and remove deprecated old versions

This commit is contained in:
Sander van der Burg
2018-01-05 12:34:03 +01:00
parent bb06428818
commit fb346c3402
7 changed files with 31 additions and 112 deletions
@@ -9,9 +9,7 @@ rec {
} else null;
titaniumsdk = let
titaniumSdkFile = if tiVersion == "5.1.2.GA" then ./titaniumsdk-5.1.nix
else if tiVersion == "5.2.3.GA" then ./titaniumsdk-5.2.nix
else if tiVersion == "6.0.2.GA" then ./titaniumsdk-6.0.nix
titaniumSdkFile = if tiVersion == "6.3.1.GA" then ./titaniumsdk-6.3.nix
else throw "Titanium version not supported: "+tiVersion;
in
import titaniumSdkFile {
@@ -19,8 +17,8 @@ rec {
};
buildApp = import ./build-app.nix {
inherit (pkgs) stdenv python which jdk nodejs;
inherit (pkgs.nodePackages_4_x) titanium alloy;
inherit (pkgs) stdenv python which file jdk nodejs;
inherit (pkgs.nodePackages_6_x) alloy titanium;
inherit (androidenv) androidsdk;
inherit (xcodeenv) xcodewrapper;
inherit titaniumsdk xcodeBaseDir;