bazel: fix protobuf sha256

This commit is contained in:
Shohei Kamimori 2018-01-09 08:11:20 +09:00 committed by ZHANG Dapeng
parent 35a6bf863d
commit 3b93fd44bd
1 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ def com_google_protobuf():
# This statement defines the @com_google_protobuf repo. # This statement defines the @com_google_protobuf repo.
native.http_archive( native.http_archive(
name = "com_google_protobuf", name = "com_google_protobuf",
sha256 = "cef7f1b5a7c5fba672bec2a319246e8feba471f04dcebfe362d55930ee7c1c30", sha256 = "1f8b9b202e9a4e467ff0b0f25facb1642727cdf5e69092038f15b37c75b99e45",
strip_prefix = "protobuf-3.5.1", strip_prefix = "protobuf-3.5.1",
urls = ["https://github.com/google/protobuf/archive/v3.5.1.zip"], urls = ["https://github.com/google/protobuf/archive/v3.5.1.zip"],
) )
@ -148,7 +148,7 @@ def com_google_protobuf_java():
# which is the Java proto runtime (base classes and common utilities). # which is the Java proto runtime (base classes and common utilities).
native.http_archive( native.http_archive(
name = "com_google_protobuf_java", name = "com_google_protobuf_java",
sha256 = "cef7f1b5a7c5fba672bec2a319246e8feba471f04dcebfe362d55930ee7c1c30", sha256 = "1f8b9b202e9a4e467ff0b0f25facb1642727cdf5e69092038f15b37c75b99e45",
strip_prefix = "protobuf-3.5.1", strip_prefix = "protobuf-3.5.1",
urls = ["https://github.com/google/protobuf/archive/v3.5.1.zip"], urls = ["https://github.com/google/protobuf/archive/v3.5.1.zip"],
) )