This commit is contained in:
Ali 2023-09-18 18:59:50 +02:00
parent 1c960c816f
commit 7e9b2b39ee
7 changed files with 7 additions and 24 deletions

View file

@ -1,15 +1,13 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
'''http_archive(
name = "com_google_protobuf",
urls = ["https://github.com/protocolbuffers/protobuf/releases/download/v22.2/protobuf-22.2.zip"],
sha256 = "bf1f92aebd619651220711e97b3d560cdc2484718cd56d95161bfb2fadb8628e",
strip_prefix = "protobuf-22.2",
type = "zip",
http_archive(
name = "bazel_features",
sha256 = "9fcb3d7cbe908772462aaa52f02b857a225910d30daa3c252f670e3af6d8036d",
strip_prefix = "bazel_features-1.0.0",
url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.0.0/bazel_features-v1.0.0.tar.gz",
)
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
protobuf_deps()'''
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()
local_repository(
name = "build_bazel_rules_apple",