From aa5c2292236c3df6a4a82ed604adc7fd0bc2d835 Mon Sep 17 00:00:00 2001 From: Cillian de RĂ³iste Date: Thu, 8 May 2014 00:49:19 +0200 Subject: androidsdk: upgrade 22.3 -> 22.6.2 --- pkgs/development/mobile/androidenv/androidsdk.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'pkgs/development/mobile') diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix index f1bbdc35bcde..1a2124754a20 100644 --- a/pkgs/development/mobile/androidenv/androidsdk.nix +++ b/pkgs/development/mobile/androidenv/androidsdk.nix @@ -7,17 +7,18 @@ }: {platformVersions, abiVersions, useGoogleAPIs}: -stdenv.mkDerivation { - name = "android-sdk-22.3"; +stdenv.mkDerivation rec { + name = "android-sdk-${version}"; + version = "22.6.2"; src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl { - url = http://dl.google.com/android/android-sdk_r22.3-linux.tgz; - md5 = "6ae581a906d6420ad67176dff25a31cc"; + url = "http://dl.google.com/android/android-sdk_r${version}-linux.tgz"; + md5 = "ff1541418a44d894bedc5cef10622220"; } else if stdenv.system == "x86_64-darwin" then fetchurl { - url = http://dl.google.com/android/android-sdk_r22.3-macosx.zip; - md5 = "ecde88ca1f05955826697848fcb4a9e7"; + url = "http://dl.google.com/android/android-sdk_r${version}-macosx.zip"; + md5 = "2a319c862dd1dcf450bfe2a6b3d9c608"; } else throw "platform not ${stdenv.system} supported!"; -- cgit 1.4.1