ReleaseSnowflake (Arctic)Snowflake (Arctic)published Nov 17, 2025seen Jun 26

Snowflake-Labs/bazel-lib v0.1.0

Snowflake-Labs/bazel-lib

Open original ↗

Captured source

source ↗
published Nov 17, 2025seen Jun 26captured 2whttp 200method plain

v0.1.0

Repository: Snowflake-Labs/bazel-lib

Tag: v0.1.0

Published: 2025-11-17T14:11:05Z

Prerelease: no

Release notes:

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "bazel_lib", version = "0.1.0")

Using WORKSPACE (deprecated)

Paste this snippet into your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "bazel_lib",
sha256 = "67a14f455af2f987393caf83705419ea473fa8837c6b023aefbbbcf2160d7b8d",
strip_prefix = "bazel-lib-0.1.0",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v0.1.0/bazel-lib-v0.1.0.tar.gz",
)

load("@bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains")

# Required bazel-lib dependencies

bazel_lib_dependencies()

# Required rules_shell dependencies
load("@rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")

rules_shell_dependencies()

rules_shell_toolchains()

# Register bazel-lib toolchains

bazel_lib_register_toolchains()

# Create the host platform repository transitively required by bazel-lib

load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@platforms//host:extension.bzl", "host_platform_repo")

maybe(
host_platform_repo,
name = "host_platform",
)

What's Changed

  • Create LEGAL.md by @fjkattan in https://github.com/Snowflake-Labs/bazel-lib/pull/1

New Contributors

  • @fjkattan made their first contribution in https://github.com/Snowflake-Labs/bazel-lib/pull/1

Full Changelog: https://github.com/Snowflake-Labs/bazel-lib/commits/v0.1.0