about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2014-07-18 16:59:03 +0200
committerSander van der Burg <svanderburg@gmail.com>2014-07-18 16:59:36 +0200
commit600f854260a72ea16819690e7784d7f62afa9b6f (patch)
tree455e5de73ec64ef40519bf1e3e9456044c82f83e
parentfc7fc7ce4317d643c002e4bddfa0fa135829ef00 (diff)
downloadnixlib-600f854260a72ea16819690e7784d7f62afa9b6f.tar
nixlib-600f854260a72ea16819690e7784d7f62afa9b6f.tar.gz
nixlib-600f854260a72ea16819690e7784d7f62afa9b6f.tar.bz2
nixlib-600f854260a72ea16819690e7784d7f62afa9b6f.tar.lz
nixlib-600f854260a72ea16819690e7784d7f62afa9b6f.tar.xz
nixlib-600f854260a72ea16819690e7784d7f62afa9b6f.tar.zst
nixlib-600f854260a72ea16819690e7784d7f62afa9b6f.zip
titaniumsdk: Bump to version 3.3.0.GA stable
-rw-r--r--pkgs/development/mobile/titaniumenv/default.nix4
-rw-r--r--pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix12
2 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/mobile/titaniumenv/default.nix b/pkgs/development/mobile/titaniumenv/default.nix
index 463a773537c2..6c71116b5e81 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.1.GA"}:
+{pkgs, pkgs_i686, xcodeVersion ? "5.0", tiVersion ? "3.2.3.GA"}:
 
 let
   # We have to use Oracle's JDK. On Darwin, just simply expose the host system's
@@ -30,7 +30,7 @@ rec {
   titaniumsdk = let
     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.RC2" then ./titaniumsdk-3.3.nix
+      else if tiVersion == "3.3.0.GA" then ./titaniumsdk-3.3.nix
       else throw "Titanium version not supported: "+tiVersion;
     in
     import titaniumSdkFile {
diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix
index 641d83bb4658..be3628f26449 100644
--- a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix
+++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.3.nix
@@ -1,14 +1,14 @@
 {stdenv, fetchurl, unzip, makeWrapper, python, jdk}:
 
 stdenv.mkDerivation {
-  name = "mobilesdk-3.3.0.RC2";
+  name = "mobilesdk-3.3.0.GA";
   src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
-    url = http://builds.appcelerator.com/mobile/3.3.0/mobilesdk-3.3.0.RC2-linux.zip;
-    sha1 = "ad4d0003b81ffc5947c1961548ad4b8591aaec5b";
+    url = http://builds.appcelerator.com/mobile/3.3.0/mobilesdk-3.3.0.GA-linux.zip;
+    sha1 = "9a9cca05a4cf8700df60b7e9d9cd969ecb70d81e";
   }
   else if stdenv.system == "x86_64-darwin" then fetchurl {
-    url = http://builds.appcelerator.com/mobile/3.3.0/mobilesdk-3.3.0.RC2-osx.zip;
-    sha1 = "621080fdd48801bfec7113fef1f224caabf0d4dd";
+    url = http://builds.appcelerator.com/mobile/3.3.0/mobilesdk-3.3.0.GA-osx.zip;
+    sha1 = "c6333e4da2564b9c51b865c1db49a062fbc743af";
   }
   else throw "Platform: ${stdenv.system} not supported!";
   
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
    
     # Rename ugly version number
     cd mobilesdk/*
-    cd 3.3.0.RC2
+    cd 3.3.0.GA
     
     # Zip files do not support timestamps lower than 1980. We have to apply a few work-arounds to cope with that
     # Yes, I know it's nasty :-)