Using Bzlmod
Add to your MODULE.bazel file:
bazel_dep(name = "rules_gazebo", version = "v0.0.9")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 = "ec5b4dd5fd6776b2c3aa2781d9a88ebe63dcb241840ecce86078e02137ddb0ca",
strip_prefix = "rules_gazebo-v0.0.9",
url = "https://github.com/gazebosim/rules_gazebo/releases/download/v0.0.9/rules_gazebo-v0.0.9.tar.gz",
)Full Changelog: v0.0.7...v0.0.9