Skip to content

Instantly share code, notes, and snippets.

@nicolasnoble
Created August 10, 2020 21:51
Show Gist options
  • Save nicolasnoble/9f6ed31a961986ab9c30ed2a6c96995c to your computer and use it in GitHub Desktop.
Save nicolasnoble/9f6ed31a961986ab9c30ed2a6c96995c to your computer and use it in GitHub Desktop.
Empty WORKSPACE file for grpc
workspace(name = "grpc_example")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_github_grpc_grpc",
sha256 = "bbc8f020f4e85ec029b047fab939b8c81f3d67254b5c724e1003a2bc49ddd123",
strip_prefix = "grpc-d8f4928fa779f6005a7fe55a176bdb373b0f910f",
urls = ["https://github.com/grpc/grpc/archive/d8f4928fa779f6005a7fe55a176bdb373b0f910f.tar.gz"],
)
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
grpc_deps()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment