mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
8602eeda81
- Updated platform-tools, addons and system-images that belong to release 21 accordingly - We must also patch 64-bit emulator instances now
17 lines
338 B
Nix
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 ];
|
|
} |