https://dl.google.com/android/repository/ # This file is generated from generate-sources.sh. DO NOT EDIT. # Execute generate-sources.sh or fetch.sh to update the file. {stdenv, fetchurl, unzip}: let buildSource = args: stdenv.mkDerivation (args // { buildInputs = [ unzip ]; buildCommand = '' mkdir -p $out cd $out unzip $src ''; }); in { source_ = buildSource { name = "android-source-"; src = fetchurl { url = ; sha1 = ""; }; meta = { description = "Source code for Android API "; }; }; }