about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-12-02 21:41:40 -0500
committerShea Levy <shea@shealevy.com>2013-12-02 21:41:40 -0500
commit4a1a28faebf809621a97b3fa0a198d401c1531f7 (patch)
treeef06089f755d1e4be8b1aceb266d6a003d911762 /pkgs
parent35e47a4a476ab9487f9640970d8ddca9b163dcd3 (diff)
downloadnixlib-4a1a28faebf809621a97b3fa0a198d401c1531f7.tar
nixlib-4a1a28faebf809621a97b3fa0a198d401c1531f7.tar.gz
nixlib-4a1a28faebf809621a97b3fa0a198d401c1531f7.tar.bz2
nixlib-4a1a28faebf809621a97b3fa0a198d401c1531f7.tar.lz
nixlib-4a1a28faebf809621a97b3fa0a198d401c1531f7.tar.xz
nixlib-4a1a28faebf809621a97b3fa0a198d401c1531f7.tar.zst
nixlib-4a1a28faebf809621a97b3fa0a198d401c1531f7.zip
Revert android build tools update
https://code.google.com/p/android/issues/detail?id=61710
Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/mobile/androidenv/build-tools.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/mobile/androidenv/build-tools.nix b/pkgs/development/mobile/androidenv/build-tools.nix
index ebcde6a8a2d4..58bf35493618 100644
--- a/pkgs/development/mobile/androidenv/build-tools.nix
+++ b/pkgs/development/mobile/androidenv/build-tools.nix
@@ -1,15 +1,15 @@
 {stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit}:
 
 stdenv.mkDerivation {
-  name = "android-build-tools-r19";
+  name = "android-build-tools-r18.1.0";
   src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
     then fetchurl {
-      url = https://dl-ssl.google.com/android/repository/build-tools_r19-linux.zip;
-      sha1 = "55c1a6cf632e7d346f0002b275ec41fd3137fd83";
+      url = https://dl-ssl.google.com/android/repository/build-tools_r18.1-linux.zip;
+      sha1 = "f314a0599e51397f0886fe888b50dd98f2f050d8";
     }
     else if stdenv.system == "x86_64-darwin" then fetchurl {
-      url = https://dl-ssl.google.com/android/repository/build-tools_r19-macosx.zip;
-      sha1 = "86ec1c12db1bc446b7bcaefc5cc14eb361044e90";
+      url = https://dl-ssl.google.com/android/repository/build-tools_r18.1-macosx.zip;
+      sha1 = "16ddb299b8b43063e5bb3387ec17147c5053dfd8";
     }
     else throw "System ${stdenv.system} not supported!";