summary refs log tree commit diff
path: root/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2014-07-15 16:05:25 +0200
committerSander van der Burg <svanderburg@gmail.com>2014-07-15 16:05:25 +0200
commitbce5f2cf56a3e91ff8d7175364227f91a8378580 (patch)
treedede9be0c785e5ccca9ef684d2d75f3db0f41d9f /pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix
parent7dce55d0fd1a8d39c0156d2f05e4017931c4ca9b (diff)
downloadnixlib-bce5f2cf56a3e91ff8d7175364227f91a8378580.tar
nixlib-bce5f2cf56a3e91ff8d7175364227f91a8378580.tar.gz
nixlib-bce5f2cf56a3e91ff8d7175364227f91a8378580.tar.bz2
nixlib-bce5f2cf56a3e91ff8d7175364227f91a8378580.tar.lz
nixlib-bce5f2cf56a3e91ff8d7175364227f91a8378580.tar.xz
nixlib-bce5f2cf56a3e91ff8d7175364227f91a8378580.tar.zst
nixlib-bce5f2cf56a3e91ff8d7175364227f91a8378580.zip
titaniumsdk: Bump to version 3.2.3
Diffstat (limited to 'pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix')
-rw-r--r--pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix
index 1f0d53e99fe5..2ac4040714b0 100644
--- a/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix
+++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-3.2.nix
@@ -1,14 +1,14 @@
 {stdenv, fetchurl, unzip, makeWrapper, python, jdk}:
 
 stdenv.mkDerivation {
-  name = "mobilesdk-3.2.2.v20140305122111";
+  name = "mobilesdk-3.2.3.GA";
   src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
-    url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_2_X/mobilesdk-3.2.2.v20140305122111-linux.zip;
-    sha1 = "12dc1bfe8dd73db0650a235492f5f50c7b816d69";
+    url = http://builds.appcelerator.com/mobile/3.2.3/mobilesdk-3.2.3.GA-linux.zip;
+    sha1 = "303e6d19a0ca099d47f6862c00b261c6d0206cea";
   }
   else if stdenv.system == "x86_64-darwin" then fetchurl {
-    url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_2_X/mobilesdk-3.2.2.v20140305122111-osx.zip;
-    sha1 = "9875b59faf0ab92e8996b58476466405ed60f6e2";
+    url = http://builds.appcelerator.com/mobile/3.2.3/mobilesdk-3.2.3.GA-osx.zip;
+    sha1 = "8c358cbd8624ffe3dfbd0283738105157067e0fb";
   }
   else throw "Platform: ${stdenv.system} not supported!";
   
@@ -28,8 +28,7 @@ stdenv.mkDerivation {
    
     # Rename ugly version number
     cd mobilesdk/*
-    mv 3.2.2.v20140305122111 3.2.2.GA
-    cd 3.2.2.GA
+    cd 3.2.3.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 :-)