1"""loads the highwayhash library, used by TF."""
2
3load("//third_party:repo.bzl", "third_party_http_archive")
4
5def repo():
6    third_party_http_archive(
7        name = "highwayhash",
8        urls = [
9            "https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/highwayhash/archive/fd3d9af80465e4383162e4a7c5e2f406e82dd968.tar.gz",
10            "https://github.com/google/highwayhash/archive/fd3d9af80465e4383162e4a7c5e2f406e82dd968.tar.gz",
11        ],
12        sha256 = "9c3e0e87d581feeb0c18d814d98f170ff23e62967a2bd6855847f0b2fe598a37",
13        strip_prefix = "highwayhash-fd3d9af80465e4383162e4a7c5e2f406e82dd968",
14        build_file = "//third_party/highwayhash:BUILD.bazel",
15    )
16