2020-04-24 23:36:52 +00:00
|
|
|
{pkgs, androidenv, xcodeenv, tiVersion ? "8.3.2.GA"}:
|
|
|
|
|
|
|
|
rec {
|
|
|
|
titaniumsdk = let
|
|
|
|
titaniumSdkFile = if tiVersion == "8.2.1.GA" then ./titaniumsdk-8.2.nix
|
|
|
|
else if tiVersion == "8.3.2.GA" then ./titaniumsdk-8.3.nix
|
|
|
|
else throw "Titanium version not supported: "+tiVersion;
|
|
|
|
in
|
|
|
|
import titaniumSdkFile {
|
2021-02-05 17:12:51 +00:00
|
|
|
inherit (pkgs) stdenv lib fetchurl unzip makeWrapper;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildApp = import ./build-app.nix {
|
2023-10-09 19:29:22 +00:00
|
|
|
inherit (pkgs) stdenv lib python which file jdk nodejs titanium;
|
|
|
|
alloy = pkgs.titanium-alloy;
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (androidenv) composeAndroidPackages;
|
|
|
|
inherit (xcodeenv) composeXcodeWrapper;
|
|
|
|
inherit titaniumsdk;
|
|
|
|
};
|
|
|
|
}
|