| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")def prometheus_cpp_repositories():    maybe(        http_archive,        name = "civetweb",        strip_prefix = "civetweb-1.13",        sha256 = "a7ccc76c2f1b5f4e8d855eb328ed542f8fe3b882a6da868781799a98f4acdedc",        urls = [            "https://github.com/civetweb/civetweb/archive/v1.13.tar.gz",        ],        build_file = "@com_github_jupp0r_prometheus_cpp//bazel:civetweb.BUILD",    )    maybe(        http_archive,        name = "com_google_googletest",        sha256 = "9dc9157a9a1551ec7a7e43daea9a694a0bb5fb8bec81235d8a1e6ef64c716dcb",        strip_prefix = "googletest-release-1.10.0",        urls = [            "https://github.com/google/googletest/archive/release-1.10.0.tar.gz",        ],    )    maybe(        http_archive,        name = "com_github_curl",        sha256 = "ba98332752257b47b9dea6d8c0ad25ec1745c20424f1dd3ff2c99ab59e97cf91",        strip_prefix = "curl-7.73.0",        urls = [            "https://github.com/curl/curl/releases/download/curl-7_73_0/curl-7.73.0.tar.gz",            "https://curl.haxx.se/download/curl-7.73.0.tar.gz",        ],        build_file = "@com_github_jupp0r_prometheus_cpp//bazel:curl.BUILD",    )    maybe(        http_archive,        name = "com_github_google_benchmark",        sha256 = "dccbdab796baa1043f04982147e67bb6e118fe610da2c65f88912d73987e700c",        strip_prefix = "benchmark-1.5.2",        urls = [            "https://github.com/google/benchmark/archive/v1.5.2.tar.gz",        ],    )    maybe(        http_archive,        name = "net_zlib_zlib",        sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",        strip_prefix = "zlib-1.2.11",        urls = [            "https://mirror.bazel.build/zlib.net/zlib-1.2.11.tar.gz",            "https://zlib.net/zlib-1.2.11.tar.gz",        ],        build_file = "@com_github_jupp0r_prometheus_cpp//bazel:zlib.BUILD",    )
 |