16 lines
613 B
Python
16 lines
613 B
Python
"""A module for defining the stardoc repository"""
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
|
|
|
def stardoc_repository():
|
|
maybe(
|
|
http_archive,
|
|
name = "io_bazel_stardoc",
|
|
sha256 = "3fd8fec4ddec3c670bd810904e2e33170bedfe12f90adf943508184be458c8bb",
|
|
urls = [
|
|
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
|
|
"https://github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
|
|
],
|
|
)
|