2017-10-10 14:59:31 +00:00
|
|
|
workspace(name = "bazel_skylib")
|
2018-12-04 15:14:08 +00:00
|
|
|
|
|
|
|
load(":workspace.bzl", "bazel_skylib_workspace")
|
|
|
|
|
|
|
|
bazel_skylib_workspace()
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
# Below this line is for documentation generation only,
|
|
|
|
# and should thus not be included by dependencies on
|
|
|
|
# bazel-skylib.
|
|
|
|
|
2019-07-02 16:35:55 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
2019-03-07 22:22:04 +00:00
|
|
|
|
2019-07-02 16:35:55 +00:00
|
|
|
http_archive(
|
2019-02-28 22:43:57 +00:00
|
|
|
name = "io_bazel_skydoc",
|
2019-07-02 16:35:55 +00:00
|
|
|
url = "https://github.com/bazelbuild/skydoc/archive/0.3.0.tar.gz",
|
|
|
|
sha256 = "c2d66a0cc7e25d857e480409a8004fdf09072a1bd564d6824441ab2f96448eea",
|
|
|
|
strip_prefix = "skydoc-0.3.0",
|
2019-02-28 22:43:57 +00:00
|
|
|
)
|
2019-03-07 22:22:04 +00:00
|
|
|
|
2019-02-28 22:43:57 +00:00
|
|
|
load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
|
2019-03-07 22:22:04 +00:00
|
|
|
|
2019-02-28 22:43:57 +00:00
|
|
|
skydoc_repositories()
|