summary refs log blame commit diff
path: root/pkgs/development/mobile/titaniumenv/default.nix
blob: e29801c51f97a35e0d1d58fa6326fc8f30759799 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                     

     
                   
                                                                           
                                                                


                                                              
                                                       
      
 
                                     
                                                       



                                                   

    
{pkgs, androidenv, xcodeenv, tiVersion ? "7.1.0.GA"}:

rec {
  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 {
      inherit (pkgs) stdenv fetchurl unzip makeWrapper;
    };

  buildApp = import ./build-app.nix {
    inherit (pkgs) stdenv python which file jdk nodejs;
    inherit (pkgs.nodePackages_8_x) alloy titanium;
    inherit (androidenv) composeAndroidPackages;
    inherit (xcodeenv) composeXcodeWrapper;
    inherit titaniumsdk;
  };
}