github.com/johnnyeven/libtools@v0.0.0-20191126065708-61829c1adf46/third_party/highwayhash/workspace.bzl (about)

     1  """loads the highwayhash library, used by TF."""
     2  
     3  load("//third_party:repo.bzl", "third_party_http_archive")
     4  
     5  def 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      )