Using Bzlmod
Add to your MODULE.bazel
file:
bazel_dep(name = "rules_gazebo", version = "0.0.2")
Using WORKSPACE
Paste this snippet into your WORKSPACE
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_gazebo",
sha256 = "3c0e46cb90987ab0966baa8df9ca2bd0177f76910b4f4f28d449a016ad7cfda6",
strip_prefix = "rules_gazebo-0.0.2",
url = "https://github.com/gazebosim/rules_gazebo/releases/download/0.0.2/rules_gazebo-0.0.2.tar.gz",
)
What's Changed
- Release v0.0.1 by @mjcarroll in #1
- Support Bazel 6 and 7 by @mjcarroll in #2
- chore: update buildifier prebuilt by @wep21 in #3
- Buildifier is not just a dev dependency here by @mjcarroll in #4
New Contributors
- @mjcarroll made their first contribution in #1
- @wep21 made their first contribution in #3
Full Changelog: https://github.com/gazebosim/rules_gazebo/commits/0.0.2