mirror of
https://github.com/peridotbuild/peridot.git
synced 2024-10-12 10:45:08 +00:00
222 lines
7.8 KiB
Python
222 lines
7.8 KiB
Python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# rules_py
|
|
# ------------------------------------------------------------------------------
|
|
http_archive(
|
|
name = "aspect_rules_py",
|
|
sha256 = "d87463035d7df79b79e9a03247c463bda3623f26b7a24dd1ebee9ced2be38f4e",
|
|
strip_prefix = "rules_py-0.3.0",
|
|
url = "https://github.com/aspect-build/rules_py/releases/download/v0.3.0/rules_py-v0.3.0.tar.gz",
|
|
)
|
|
|
|
http_archive(
|
|
name = "rules_python",
|
|
patch_cmds = ["""\
|
|
cat >> python/BUILD.bazel <<EOF
|
|
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
|
|
bzl_library(
|
|
name = "defs",
|
|
srcs = [
|
|
":bzl",
|
|
"@bazel_tools//tools/python:srcs_version.bzl",
|
|
"@bazel_tools//tools/python:utils.bzl",
|
|
"@bazel_tools//tools/python:private/defs.bzl",
|
|
"@bazel_tools//tools/python:toolchain.bzl",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
EOF
|
|
"""],
|
|
sha256 = "5868e73107a8e85d8f323806e60cad7283f34b32163ea6ff1020cf27abef6036",
|
|
strip_prefix = "rules_python-0.25.0",
|
|
url = "https://github.com/bazelbuild/rules_python/releases/download/0.25.0/rules_python-0.25.0.tar.gz",
|
|
)
|
|
|
|
load("@rules_python//python:repositories.bzl", "py_repositories")
|
|
|
|
py_repositories()
|
|
|
|
load("@rules_python//python:repositories.bzl", "python_register_toolchains")
|
|
|
|
python_register_toolchains(
|
|
name = "python_3_11",
|
|
# Available versions are listed in @rules_python//python:versions.bzl.
|
|
# We recommend using the same version your team is already standardized on.
|
|
python_version = "3.11",
|
|
)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# bazel_skylib
|
|
# ------------------------------------------------------------------------------
|
|
http_archive(
|
|
name = "bazel_skylib",
|
|
sha256 = "66ffd9315665bfaafc96b52278f57c7e2dd09f5ede279ea6d39b2be471e7e3aa",
|
|
strip_prefix = "",
|
|
# 1.4.2, latest as of 2023-06-08
|
|
urls = [
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.2/bazel-skylib-1.4.2.tar.gz",
|
|
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.2/bazel-skylib-1.4.2.tar.gz",
|
|
],
|
|
)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# protobuf
|
|
# ------------------------------------------------------------------------------
|
|
http_archive(
|
|
name = "com_google_protobuf",
|
|
sha256 = "d0f5f605d0d656007ce6c8b5a82df3037e1d8fe8b121ed42e536f569dec16113",
|
|
strip_prefix = "protobuf-3.14.0",
|
|
urls = [
|
|
"https://mirror.bazel.build/github.com/protocolbuffers/protobuf/archive/v3.14.0.tar.gz",
|
|
"https://github.com/protocolbuffers/protobuf/archive/v3.14.0.tar.gz",
|
|
],
|
|
)
|
|
|
|
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
|
|
|
|
protobuf_deps()
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# googleapis
|
|
# ------------------------------------------------------------------------------
|
|
http_archive(
|
|
name = "googleapis",
|
|
sha256 = "9d1a930e767c93c825398b8f8692eca3fe353b9aaadedfbcf1fca2282c85df88",
|
|
strip_prefix = "googleapis-64926d52febbf298cb82a8f472ade4a3969ba922",
|
|
urls = [
|
|
"https://github.com/googleapis/googleapis/archive/64926d52febbf298cb82a8f472ade4a3969ba922.zip",
|
|
],
|
|
)
|
|
|
|
load("@googleapis//:repository_rules.bzl", "switched_rules_by_language")
|
|
|
|
switched_rules_by_language(
|
|
name = "com_google_googleapis_imports",
|
|
)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# rules_go
|
|
# ------------------------------------------------------------------------------
|
|
http_archive(
|
|
name = "io_bazel_rules_go",
|
|
sha256 = "6dc2da7ab4cf5d7bfc7c949776b1b7c733f05e56edc4bcd9022bb249d2e2a996",
|
|
urls = [
|
|
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip",
|
|
"https://github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip",
|
|
],
|
|
)
|
|
|
|
http_archive(
|
|
name = "bazel_gazelle",
|
|
sha256 = "727f3e4edd96ea20c29e8c2ca9e8d2af724d8c7778e7923a854b2c80952bc405",
|
|
urls = [
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.30.0/bazel-gazelle-v0.30.0.tar.gz",
|
|
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.30.0/bazel-gazelle-v0.30.0.tar.gz",
|
|
],
|
|
)
|
|
|
|
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
|
|
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
|
|
|
|
go_rules_dependencies()
|
|
|
|
go_register_toolchains(version = "1.20.5")
|
|
|
|
load("//:deps.bzl", "go_dependencies")
|
|
|
|
# gazelle:repository_macro deps.bzl%go_dependencies
|
|
go_dependencies()
|
|
|
|
gazelle_dependencies()
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# rules_js
|
|
# ------------------------------------------------------------------------------
|
|
http_archive(
|
|
name = "aspect_rules_js",
|
|
sha256 = "7b2a4d1d264e105eae49a27e2e78065b23e2e45724df2251eacdd317e95bfdfd",
|
|
strip_prefix = "rules_js-1.31.0",
|
|
url = "https://github.com/aspect-build/rules_js/releases/download/v1.31.0/rules_js-v1.31.0.tar.gz",
|
|
)
|
|
|
|
load("@aspect_rules_js//js:repositories.bzl", "rules_js_dependencies")
|
|
|
|
rules_js_dependencies()
|
|
|
|
load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains")
|
|
|
|
nodejs_register_toolchains(
|
|
name = "nodejs",
|
|
node_version = "18.13.0",
|
|
)
|
|
|
|
load("@aspect_rules_js//npm:repositories.bzl", "npm_translate_lock")
|
|
|
|
npm_translate_lock(
|
|
name = "npm",
|
|
pnpm_lock = "//:pnpm-lock.yaml",
|
|
verify_node_modules_ignored = "//:.bazelignore",
|
|
)
|
|
|
|
load("@npm//:repositories.bzl", "npm_repositories")
|
|
|
|
npm_repositories()
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# rules_swc
|
|
# ------------------------------------------------------------------------------
|
|
http_archive(
|
|
name = "aspect_rules_swc",
|
|
sha256 = "8eb9e42ed166f20cacedfdb22d8d5b31156352eac190fc3347db55603745a2d8",
|
|
strip_prefix = "rules_swc-1.1.0",
|
|
url = "https://github.com/aspect-build/rules_swc/releases/download/v1.1.0/rules_swc-v1.1.0.tar.gz",
|
|
)
|
|
|
|
# Fetches the rules_swc dependencies.
|
|
# If you want to have a different version of some dependency,
|
|
# you should fetch it *before* calling this.
|
|
# Alternatively, you can skip calling this function, so long as you've
|
|
# already fetched all the dependencies.
|
|
load("@aspect_rules_swc//swc:dependencies.bzl", "rules_swc_dependencies")
|
|
|
|
rules_swc_dependencies()
|
|
|
|
# Fetches a SWC cli from
|
|
# https://github.com/swc-project/swc/releases
|
|
# If you'd rather compile it from source, you can use rules_rust, fetch the project,
|
|
# then register the toolchain yourself. (Note, this is not yet documented)
|
|
load("@aspect_rules_swc//swc:repositories.bzl", "swc_register_toolchains")
|
|
|
|
swc_register_toolchains(
|
|
name = "swc",
|
|
swc_version_from = "//:package.json",
|
|
)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# rules_esbuild
|
|
# ------------------------------------------------------------------------------
|
|
http_archive(
|
|
name = "aspect_rules_esbuild",
|
|
sha256 = "098e38e5ee868c14a6484ba263b79e57d48afacfc361ba30137c757a9c4716d6",
|
|
strip_prefix = "rules_esbuild-0.15.0",
|
|
url = "https://github.com/aspect-build/rules_esbuild/releases/download/v0.15.0/rules_esbuild-v0.15.0.tar.gz",
|
|
)
|
|
|
|
# Fetches the rules_esbuild dependencies.
|
|
# If you want to have a different version of some dependency,
|
|
# you should fetch it *before* calling this.
|
|
# Alternatively, you can skip calling this function, so long as you've
|
|
# already fetched all the dependencies.
|
|
load("@aspect_rules_esbuild//esbuild:dependencies.bzl", "rules_esbuild_dependencies")
|
|
|
|
rules_esbuild_dependencies()
|
|
|
|
load("@aspect_rules_esbuild//esbuild:repositories.bzl", "esbuild_register_toolchains")
|
|
|
|
esbuild_register_toolchains(
|
|
name = "esbuild",
|
|
esbuild_version = "0.17.18",
|
|
)
|