-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE.bazel
37 lines (30 loc) · 1.3 KB
/
WORKSPACE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
workspace(
name = "rules_cc_hdrs_map",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# This project does not rely on any dependencies to function properly.
# Entries below are solely for the purposes of development.
http_archive(
name = "bazel_skylib",
sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
],
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
# Author's soap box:
# I need to keep this named 'stardoc' as it should match the dep download namming from bzlmod
# https://github.com/bazelbuild/bazel-central-registry/pull/25/files
# Not a fan.
http_archive(
name = "stardoc",
sha256 = "05fb57bb4ad68a360470420a3b6f5317e4f722839abc5b17ec4ef8ed465aaa47",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.2/stardoc-0.5.2.tar.gz",
"https://github.com/bazelbuild/stardoc/releases/download/0.5.2/stardoc-0.5.2.tar.gz",
],
)
load("@stardoc//:setup.bzl", "stardoc_repositories")
stardoc_repositories()