about summary refs log tree commit diff
path: root/pkgs/development/mobile
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2014-10-07 15:29:58 +0200
committerSander van der Burg <svanderburg@gmail.com>2014-10-07 15:29:58 +0200
commit2b5a27c3d89d23b6a29029266b36a830a3e51e51 (patch)
tree9f3bb3b2855b78bc4fa04146e48759bd3b627e62 /pkgs/development/mobile
parentda9c4c05eba03882191169ad73c9434d8ac7aea1 (diff)
downloadnixlib-2b5a27c3d89d23b6a29029266b36a830a3e51e51.tar
nixlib-2b5a27c3d89d23b6a29029266b36a830a3e51e51.tar.gz
nixlib-2b5a27c3d89d23b6a29029266b36a830a3e51e51.tar.bz2
nixlib-2b5a27c3d89d23b6a29029266b36a830a3e51e51.tar.lz
nixlib-2b5a27c3d89d23b6a29029266b36a830a3e51e51.tar.xz
nixlib-2b5a27c3d89d23b6a29029266b36a830a3e51e51.tar.zst
nixlib-2b5a27c3d89d23b6a29029266b36a830a3e51e51.zip
titaniumsdk: Add version 3.4.0 support
Diffstat (limited to 'pkgs/development/mobile')
-rw-r--r--pkgs/development/mobile/titaniumenv/default.nix3
-rw-r--r--pkgs/development/mobile/titaniumenv/examples/default.nix2
2 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/mobile/titaniumenv/default.nix b/pkgs/development/mobile/titaniumenv/default.nix
index 6c71116b5e81..ce6e7ccb0780 100644
--- a/pkgs/development/mobile/titaniumenv/default.nix
+++ b/pkgs/development/mobile/titaniumenv/default.nix
@@ -1,4 +1,4 @@
-{pkgs, pkgs_i686, xcodeVersion ? "5.0", tiVersion ? "3.2.3.GA"}:
+{pkgs, pkgs_i686, xcodeVersion ? "5.0", tiVersion ? "3.4.0.GA"}:
 
 let
   # We have to use Oracle's JDK. On Darwin, just simply expose the host system's
@@ -31,6 +31,7 @@ rec {
     titaniumSdkFile = if tiVersion == "3.1.4.GA" then ./titaniumsdk-3.1.nix
       else if tiVersion == "3.2.3.GA" then ./titaniumsdk-3.2.nix
       else if tiVersion == "3.3.0.GA" then ./titaniumsdk-3.3.nix
+      else if tiVersion == "3.4.0.GA" then ./titaniumsdk-3.4.nix
       else throw "Titanium version not supported: "+tiVersion;
     in
     import titaniumSdkFile {
diff --git a/pkgs/development/mobile/titaniumenv/examples/default.nix b/pkgs/development/mobile/titaniumenv/examples/default.nix
index d595db408178..d00532a1b3b1 100644
--- a/pkgs/development/mobile/titaniumenv/examples/default.nix
+++ b/pkgs/development/mobile/titaniumenv/examples/default.nix
@@ -1,7 +1,7 @@
 { nixpkgs ? <nixpkgs>
 , systems ? [ "x86_64-linux" "x86_64-darwin" ]
 , xcodeVersion ? "5.0"
-, tiVersion ? "3.2.3.GA"
+, tiVersion ? "3.4.0.GA"
 , rename ? false
 , newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? ""
 , allowUnfree ? false