# This file is generated from generate-addons.sh. DO NOT EDIT.
# Execute generate-addons.sh or fetch.sh to update the file.
{stdenv, fetchurl, unzip}:
let
buildGoogleApis = args:
stdenv.mkDerivation (args // {
buildInputs = [ unzip ];
buildCommand = ''
mkdir -p $out
cd $out
unzip $src
'';
});
in
{
google_apis_ = buildGoogleApis {
name = "-";
src = fetchurl {
url = https://dl-ssl.google.com/android/repository/;
sha1 = "";
};
meta = {
description = "";
url = ;
};
};
android_support_extra = buildGoogleApis {
name = "android_support_extra";
src = fetchurl {
url = https://dl-ssl.google.com/android/repository/;
sha1 = "";
};
meta = {
description = "Android Support Library";
url = http://developer.android.com/;
};
};
google_play_services = buildGoogleApis {
name = "google_play_services";
src = fetchurl {
url = https://dl-ssl.google.com/android/repository/;
sha1 = "";
};
meta = {
description = "Google Play services client library and sample code";
url = http://developer.android.com/;
};
};
}