tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Bump titaniumsdk to 3.1.4
Sander van der Burg
12 years ago
bb69f658
ae47ba44
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
mobile
titaniumenv
titaniumsdk.nix
+5
-5
pkgs/development/mobile/titaniumenv/titaniumsdk.nix
···
1
1
{stdenv, fetchurl, unzip, makeWrapper, python, jdk}:
2
2
3
3
stdenv.mkDerivation {
4
4
-
name = "titanium-mobilesdk-3.1.1.v20130612114553";
4
4
+
name = "mobilesdk-3.1.4.v20130926144546";
5
5
src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
6
6
-
url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_1_X/mobilesdk-3.1.1.v20130612114553-linux.zip;
7
7
-
sha1 = "410ba7e8171a887b6a4b3173116430657c3d84aa";
6
6
+
url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_1_X/mobilesdk-3.1.4.v20130926144546-linux.zip;
7
7
+
sha1 = "da4a03ced67f0e8f442d551bbd41ea01fceeee00";
8
8
}
9
9
else if stdenv.system == "x86_64-darwin" then fetchurl {
10
10
-
url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_1_X/mobilesdk-3.1.1.v20130612114553-osx.zip;
11
11
-
sha1 = "0893a1560ac6fb63369fc9f6ea9550b6649438fa";
10
10
+
url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/3_1_X/mobilesdk-3.1.4.v20130926144546-osx.zip;
11
11
+
sha1 = "55f604c8edb989ba214c8ed7538d1b416df0419e";
12
12
}
13
13
else throw "Platform: ${stdenv.system} not supported!";
14
14