nixpkgs/pkgs/development/androidenv/support.nix
Sander van der Burg 8602eeda81 - Updated android SDK to version 21
- Updated platform-tools, addons and system-images that belong to release 21 accordingly
- We must also patch 64-bit emulator instances now
2012-12-20 14:04:52 +01:00

17 lines
338 B
Nix

{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "android-support-r11";
src = fetchurl {
url = https://dl-ssl.google.com/android/repository/support_r11.zip;
sha1 = "d30d182d8e4c86bb4464c03a83ccffce7bc84ecd";
};
buildCommand = ''
mkdir -p $out
cd $out
unzip $src
'';
buildInputs = [ unzip ];
}