Bump titaniumsdk to 3.1.4

+5 -5
+5 -5
pkgs/development/mobile/titaniumenv/titaniumsdk.nix
··· 1 1 {stdenv, fetchurl, unzip, makeWrapper, python, jdk}: 2 2 3 3 stdenv.mkDerivation { 4 - name = "titanium-mobilesdk-3.1.1.v20130612114553"; 4 + name = "mobilesdk-3.1.4.v20130926144546"; 5 5 src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl { 6 - url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_1_X/mobilesdk-3.1.1.v20130612114553-linux.zip; 7 - sha1 = "410ba7e8171a887b6a4b3173116430657c3d84aa"; 6 + url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_1_X/mobilesdk-3.1.4.v20130926144546-linux.zip; 7 + sha1 = "da4a03ced67f0e8f442d551bbd41ea01fceeee00"; 8 8 } 9 9 else if stdenv.system == "x86_64-darwin" then fetchurl { 10 - url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_1_X/mobilesdk-3.1.1.v20130612114553-osx.zip; 11 - sha1 = "0893a1560ac6fb63369fc9f6ea9550b6649438fa"; 10 + url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_1_X/mobilesdk-3.1.4.v20130926144546-osx.zip; 11 + sha1 = "55f604c8edb989ba214c8ed7538d1b416df0419e"; 12 12 } 13 13 else throw "Platform: ${stdenv.system} not supported!"; 14 14