blob: 82d9a80f1307d9e92ab3038ebabd2b7b13ab6a91 [file] [log] [blame]
Carmelo Cascone72893b72018-08-09 00:59:06 -07001load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
Ray Milkey472d8392018-05-23 17:06:51 -07002
Carmelo Casconee45902b2018-12-18 13:30:45 -08003P4RUNTIME_VER = "1.0.0"
4P4RUNTIME_SHA = "667464bd369b40b58dc9552be2c84e190a160b6e77137b735bd86e5b81c6adc0"
Ray Milkey472d8392018-05-23 17:06:51 -07005
6def generate_p4lang():
Carmelo Cascone72893b72018-08-09 00:59:06 -07007 http_archive(
8 name = "com_github_p4lang_p4runtime",
Carmelo Casconee45902b2018-12-18 13:30:45 -08009 urls = ["https://github.com/p4lang/p4runtime/archive/v%s.zip" % P4RUNTIME_VER],
Carmelo Cascone6a1ae712018-08-10 12:19:47 -070010 sha256 = P4RUNTIME_SHA,
Carmelo Casconee45902b2018-12-18 13:30:45 -080011 strip_prefix = "p4runtime-%s/proto" % P4RUNTIME_VER,
Ray Milkey5063f5b2018-08-15 16:22:30 -070012 build_file = "//tools/build/bazel:p4runtime_BUILD",
Ray Milkey472d8392018-05-23 17:06:51 -070013 )