summary refs log tree commit diff
path: root/pkgs/development/mobile/androidenv/androidsdk.nix
diff options
context:
space:
mode:
authorCray Elliott <MP2E@archlinux.us>2014-12-15 23:22:55 -0800
committerCray Elliott <MP2E@archlinux.us>2014-12-15 23:29:02 -0800
commit80838029ac4312b378270df363dc17ed54d21eae (patch)
tree04b76411e3f21e50d3e27f988f14bffa75c9776f /pkgs/development/mobile/androidenv/androidsdk.nix
parent51ca7fdf0b459d1ef229192ccc4fc2366f55e41a (diff)
downloadnixlib-80838029ac4312b378270df363dc17ed54d21eae.tar
nixlib-80838029ac4312b378270df363dc17ed54d21eae.tar.gz
nixlib-80838029ac4312b378270df363dc17ed54d21eae.tar.bz2
nixlib-80838029ac4312b378270df363dc17ed54d21eae.tar.lz
nixlib-80838029ac4312b378270df363dc17ed54d21eae.tar.xz
nixlib-80838029ac4312b378270df363dc17ed54d21eae.tar.zst
nixlib-80838029ac4312b378270df363dc17ed54d21eae.zip
Bump Android packages to newest versions, add androidsdk_5_0_1 to env
Detailed changes:
- android-sdk: update 23.0.2 -> 24.0.1
- android-platforms: add 5.0.1
- android-platform-tools: update 19 -> 21
- android-build-tools: update 20 -> 21.1.2
- android-support: update 18 -> 21
- android-support-repository: update 5 -> 9

This commit was authored by ewemoa, reviewed by me
Diffstat (limited to 'pkgs/development/mobile/androidenv/androidsdk.nix')
-rw-r--r--pkgs/development/mobile/androidenv/androidsdk.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix
index 533c605cf24a..9018f94b8b15 100644
--- a/pkgs/development/mobile/androidenv/androidsdk.nix
+++ b/pkgs/development/mobile/androidenv/androidsdk.nix
@@ -9,19 +9,19 @@
 
 stdenv.mkDerivation rec {
   name = "android-sdk-${version}";
-  version = "23.0.2";
-  
+  version = "24.0.1";
+
   src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
     then fetchurl {
       url = "http://dl.google.com/android/android-sdk_r${version}-linux.tgz";
-      md5 = "94a8c62086a7398cc0e73e1c8e65f71e";
+      sha1 = "fb46b9afa04e09d3c33fa9bfee5c99e9ec6a9523";
     }
     else if stdenv.system == "x86_64-darwin" then fetchurl {
       url = "http://dl.google.com/android/android-sdk_r${version}-macosx.zip";
-      md5 = "322787b0e6c629d926c28690c79ac0d8";
+      sha1 = "7097c09c72645d7ad33c81a37b1a1363a9df2a54";
     }
     else throw "platform not ${stdenv.system} supported!";
-  
+
   buildCommand = ''
     mkdir -p $out/libexec
     cd $out/libexec