# 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.google.com/android/repository/; sha1 = ""; }; meta = { description = ""; url = ; }; }; android_support_extra = buildGoogleApis { name = "android_support_extra"; src = fetchurl { url = https://dl.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.google.com/android/repository/; sha1 = ""; }; meta = { description = "Google Play services client library and sample code"; url = http://developer.android.com/; }; }; instant_apps = buildGoogleApis { name = "instant_apps_sdk"; src = fetchurl { url = https://dl.google.com/android/repository/; sha1 = ""; }; meta = { description = "Android Instant Apps Development SDK"; url = "https://developer.android.com/"; }; }; }