summary refs log tree commit diff
path: root/pkgs/development/mobile/titaniumenv/default.nix
blob: 8117b452d70bc04a9593bac8b798e63520327168 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{pkgs, pkgs_i686}:

rec {
  androidenv = pkgs.androidenv;

  xcodeenv = if pkgs.stdenv.system == "x86_64-darwin" then pkgs.xcodeenv else null;

  titaniumsdk = import ./titaniumsdk.nix {
    inherit (pkgs) stdenv fetchurl unzip makeWrapper python jdk;
  };
  
  buildApp = import ./build-app.nix {
    inherit (pkgs) stdenv;
    inherit (androidenv) androidsdk;
    inherit (xcodeenv) xcodewrapper;
    inherit titaniumsdk;
  };
}