mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
17 lines
403 B
Plaintext
17 lines
403 B
Plaintext
module(
|
|
name = "copy_to_directory",
|
|
version = "0.0.0",
|
|
compatibility_level = 1,
|
|
)
|
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.1.1")
|
|
bazel_dep(name = "aspect_bazel_lib", version = "0.0.0")
|
|
local_path_override(
|
|
module_name = "aspect_bazel_lib",
|
|
path = "../..",
|
|
)
|
|
|
|
ext = use_extension("@aspect_bazel_lib//lib:extensions.bzl", "ext")
|
|
ext.host()
|
|
use_repo(ext, "aspect_bazel_lib_host")
|