23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
20 lines
654 B
Nix
20 lines
654 B
Nix
{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 {
|
|
inherit (pkgs) stdenv lib fetchurl unzip makeWrapper;
|
|
};
|
|
|
|
buildApp = import ./build-app.nix {
|
|
inherit (pkgs) stdenv lib python which file jdk nodejs titanium;
|
|
alloy = pkgs.titanium-alloy;
|
|
inherit (androidenv) composeAndroidPackages;
|
|
inherit (xcodeenv) composeXcodeWrapper;
|
|
inherit titaniumsdk;
|
|
};
|
|
}
|