androidsdk: upgrade 22.3 -> 22.6.2

This commit is contained in:
Cillian de Róiste 2014-05-08 00:49:19 +02:00
parent 130cb5d005
commit aa5c229223

View File

@ -7,17 +7,18 @@
}: }:
{platformVersions, abiVersions, useGoogleAPIs}: {platformVersions, abiVersions, useGoogleAPIs}:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "android-sdk-22.3"; name = "android-sdk-${version}";
version = "22.6.2";
src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
then fetchurl { then fetchurl {
url = http://dl.google.com/android/android-sdk_r22.3-linux.tgz; url = "http://dl.google.com/android/android-sdk_r${version}-linux.tgz";
md5 = "6ae581a906d6420ad67176dff25a31cc"; md5 = "ff1541418a44d894bedc5cef10622220";
} }
else if stdenv.system == "x86_64-darwin" then fetchurl { else if stdenv.system == "x86_64-darwin" then fetchurl {
url = http://dl.google.com/android/android-sdk_r22.3-macosx.zip; url = "http://dl.google.com/android/android-sdk_r${version}-macosx.zip";
md5 = "ecde88ca1f05955826697848fcb4a9e7"; md5 = "2a319c862dd1dcf450bfe2a6b3d9c608";
} }
else throw "platform not ${stdenv.system} supported!"; else throw "platform not ${stdenv.system} supported!";