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

     1  """loads the aws library, used by TF."""
     2  
     3  load("//third_party:repo.bzl", "third_party_http_archive")
     4  
     5  # NOTE: version updates here should also update the major, minor, and patch variables declared in
     6  # the  copts field of the //third_party/aws:aws target
     7  
     8  def repo():
     9      third_party_http_archive(
    10          name = "aws",
    11          urls = [
    12              "https://storage.googleapis.com/mirror.tensorflow.org/github.com/aws/aws-sdk-cpp/archive/1.5.8.tar.gz",
    13              "https://github.com/aws/aws-sdk-cpp/archive/1.5.8.tar.gz",
    14          ],
    15          sha256 = "89905075fe50aa13e0337ff905c2e8c1ce9caf77a3504484a7cda39179120ffc",
    16          strip_prefix = "aws-sdk-cpp-1.5.8",
    17          build_file = "//third_party/aws:BUILD.bazel",
    18      )