2018-02-05 18:23:15 +00:00
|
|
|
workspace(name = "com_github_google_flatbuffers")
|
|
|
|
|
2018-12-10 20:23:40 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
2019-02-14 21:05:46 +00:00
|
|
|
|
2018-12-10 20:23:40 +00:00
|
|
|
http_archive(
|
|
|
|
name = "io_bazel_rules_go",
|
2019-06-20 17:25:41 +00:00
|
|
|
urls = [
|
2019-12-26 18:07:15 +00:00
|
|
|
"https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/v0.20.3/rules_go-v0.20.3.tar.gz",
|
|
|
|
"https://github.com/bazelbuild/rules_go/releases/download/v0.20.3/rules_go-v0.20.3.tar.gz",
|
2019-06-20 17:25:41 +00:00
|
|
|
],
|
2019-12-26 18:07:15 +00:00
|
|
|
sha256 = "e88471aea3a3a4f19ec1310a55ba94772d087e9ce46e41ae38ecebe17935de7b",
|
2018-12-10 20:23:40 +00:00
|
|
|
)
|
2019-02-14 21:05:46 +00:00
|
|
|
|
2019-12-26 18:07:15 +00:00
|
|
|
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
|
2019-02-14 21:05:46 +00:00
|
|
|
|
2018-12-10 20:23:40 +00:00
|
|
|
go_rules_dependencies()
|
2019-02-14 21:05:46 +00:00
|
|
|
|
2018-12-10 20:23:40 +00:00
|
|
|
go_register_toolchains()
|