We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f08d1e commit 3ab5841Copy full SHA for 3ab5841
MODULE.bazel
@@ -3,3 +3,13 @@ module(
3
version = "2.3.0",
4
compatibility_level = 2,
5
)
6
+
7
+download_xrefr = use_extension(
8
+ "@rules_erlang//bzlmod:extensions.bzl",
9
+ "download_xrefr",
10
+)
11
12
+use_repo(
13
+ download_xrefr,
14
+ "xrefr",
15
bzlmod/BUILD.bazel
bzlmod/extensions.bzl
@@ -0,0 +1,8 @@
1
+load("//:rules_erlang.bzl", "rules_erlang_dependencies")
2
+def _download_xrefr(ctx):
+ rules_erlang_dependencies()
+download_xrefr = module_extension(
+ implementation = _download_xrefr,
0 commit comments