mirror of https://github.com/bazelbuild/rules_pkg
26 lines
911 B
Plaintext
26 lines
911 B
Plaintext
module(
|
|
name = "rules_pkg",
|
|
version = "1.0.1", # Must sync with version.bzl.
|
|
compatibility_level = 1,
|
|
repo_name = "rules_pkg",
|
|
)
|
|
|
|
# Do not update to newer versions until you need a specific new feature.
|
|
bazel_dep(name = "rules_license", version = "0.0.7")
|
|
bazel_dep(name = "rules_python", version = "0.31.0")
|
|
bazel_dep(name = "bazel_skylib", version = "1.4.2")
|
|
|
|
# Only for development
|
|
bazel_dep(name = "platforms", version = "0.0.9", dev_dependency = True)
|
|
bazel_dep(name = "rules_cc", version = "0.0.9", dev_dependency = True)
|
|
bazel_dep(name = "stardoc", version = "0.6.2", dev_dependency = True)
|
|
|
|
# Find the system rpmbuild if one is available.
|
|
find_rpm = use_extension("//toolchains/rpm:rpmbuild_configure.bzl", "find_system_rpmbuild_bzlmod", dev_dependency = True)
|
|
use_repo(find_rpm, "rules_pkg_rpmbuild")
|
|
|
|
register_toolchains(
|
|
"@rules_pkg_rpmbuild//:all",
|
|
dev_dependency = True,
|
|
)
|