android13/external/tensorflow/third_party/icu/workspace.bzl

18 lines
710 B
Python

"""Loads a lightweight subset of the ICU library for Unicode processing."""
load("//third_party:repo.bzl", "tf_http_archive")
def repo():
tf_http_archive(
name = "icu",
strip_prefix = "icu-release-64-2",
sha256 = "dfc62618aa4bd3ca14a3df548cd65fe393155edd213e49c39f3a30ccd618fc27",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/unicode-org/icu/archive/release-64-2.zip",
"https://github.com/unicode-org/icu/archive/release-64-2.zip",
],
build_file = "//third_party/icu:BUILD.bazel",
system_build_file = "//third_party/icu:BUILD.system",
patch_file = "//third_party/icu:udata.patch",
)