titaniumenv: add Xcode 10.1 and Titanium 7.5.1 support

This commit is contained in:
Sander van der Burg
2019-02-04 22:50:36 +01:00
parent 9edc2d4dbb
commit 8cec070f8c
3 changed files with 122 additions and 3 deletions
@@ -1,8 +1,17 @@
{pkgs, pkgs_i686, androidenv, xcodeenv, tiVersion ? "7.1.0.GA"}:
{pkgs, pkgs_i686, tiVersion ? "7.1.0.GA"}:
rec {
androidenv = import ../../nix-androidenvtests/androidenv {
inherit pkgs pkgs_i686;
};
xcodeenv = import ../../nix-xcodeenvtests/xcodeenv {
inherit (pkgs) stdenv;
};
titaniumsdk = let
titaniumSdkFile = if tiVersion == "7.1.0.GA" then ./titaniumsdk-7.1.nix
else if tiVersion == "7.5.1.GA" then ./titaniumsdk-7.5.nix
else throw "Titanium version not supported: "+tiVersion;
in
import titaniumSdkFile {