-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
101 lines (86 loc) · 2.83 KB
/
MODULE.bazel
File metadata and controls
101 lines (86 loc) · 2.83 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
module(
name = "orga",
version = "0.0.0",
compatibility_level = 1,
)
bazel_dep(name = "bazel_skylib", version = "1.4.2")
bazel_dep(name = "rules_go", version = "0.40.1")
bazel_dep(name = "rules_pkg", version = "0.9.1")
# website dependencies
bazel_dep(name = "lissom_css", version = "0.0.0")
git_override(
module_name = "lissom_css",
commit = "00a08324134616a60bc3f21ebda92b349d19b731",
patch_strip = 1,
patches = [
"//patches:lissom_css_build_bazel.patch",
"//patches:lissom_css_module_bazel.patch",
],
remote = "git@github.com:lissomware/css.git",
)
# dev dependencies
bazel_dep(name = "gazelle", version = "0.31.1", dev_dependency = True)
# bzlparty deps
bazel_dep(name = "lib_common", version = "2.0.0")
bazel_dep(name = "rules_webdev", version = "0.0.0")
bazel_dep(name = "rules_pandoc", version = "0.0.0")
bazel_dep(name = "rules-template.sh", version = "0.0.0")
bazel_dep(name = "tool-versions-generator", version = "0.0.0")
git_override(
module_name = "lib_common",
commit = "c510607cd7b00ee15be74338adacb13492750cfc",
patch_strip = 1,
patches = [
"//patches:lib_common_build_bazel.patch",
"//patches:lib_common_module_bazel.patch",
],
remote = "git@github.com:bzlparty/lib_common.git",
)
git_override(
module_name = "rules_webdev",
commit = "005958c00e8d40f7d21e03b2696377f1027993d7",
patch_strip = 1,
patches = [
"//patches:rules_webdev_build_bazel.patch",
"//patches:rules_webdev_module_bazel.patch",
"//patches:rules_webdev_docs_build_bazel.patch",
],
remote = "git@github.com:bzlparty/rules_webdev.git",
)
git_override(
module_name = "rules_pandoc",
commit = "edf8d7be53f81b02d2948a1cc9da8f70c67e697b",
patch_strip = 1,
patches = [
"//patches:rules_pandoc_build_bazel.patch",
"//patches:rules_pandoc_module_bazel.patch",
"//patches:rules_pandoc_docs_build_bazel.patch",
],
remote = "git@github.com:bzlparty/rules_pandoc.git",
)
git_override(
module_name = "rules-template.sh",
commit = "647d1c75baff74e477e32ccb3c2c05305ca4cec7",
patch_strip = 1,
patches = [
"//patches:rules_template_sh_build_bazel.patch",
"//patches:rules_template_sh_module_bazel.patch",
],
remote = "git@github.com:bzlparty/rules-template.sh.git",
)
git_override(
module_name = "tool-versions-generator",
commit = "89c3fe5af732a9bdd4d529d56cfa06b23604bc76",
patch_strip = 1,
patches = [
"//patches:tool_versions_generator_build_bazel.patch",
"//patches:tool_versions_generator_module_bazel.patch",
],
remote = "git@github.com:bzlparty/tool-versions-generator.git",
)
go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
go_deps.from_file(go_mod = "//:go.mod")
use_repo(
go_deps,
"com_github_gomarkdown_markdown",
)