Skip to content

Instantly share code, notes, and snippets.

@marvin-hansen
Created June 23, 2024 08:58
Show Gist options
  • Save marvin-hansen/1441191edb8c5385d93f50c2624d9998 to your computer and use it in GitHub Desktop.
Save marvin-hansen/1441191edb8c5385d93f50c2624d9998 to your computer and use it in GitHub Desktop.
Workaround to use BuildBuddy toolchain with Bazelmod until Bazelmod support arrives later
###############################################################################
# BuildBuddy Toolchain
#
# Not yet available for Bazelmod.
# See: https://github.com/buildbuddy-io/buildbuddy-toolchain/issues/18
#
# Releases: https://github.com/buildbuddy-io/buildbuddy-toolchain/
###############################################################################
http_archive(
name = "io_buildbuddy_buildbuddy_toolchain",
sha256 = "e899f235b36cb901b678bd6f55c1229df23fcbc7921ac7a3585d29bff2bf9cfd",
strip_prefix = "buildbuddy-toolchain-fd351ca8f152d66fc97f9d98009e0ae000854e8f",
urls = ["https://github.com/buildbuddy-io/buildbuddy-toolchain/archive/fd351ca8f152d66fc97f9d98009e0ae000854e8f.tar.gz"],
)
load("@io_buildbuddy_buildbuddy_toolchain//:deps.bzl", "buildbuddy_deps")
buildbuddy_deps()
load("@io_buildbuddy_buildbuddy_toolchain//:rules.bzl", "buildbuddy")
buildbuddy(name = "buildbuddy_toolchain",)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment