mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
load("//thirdparty/ceres:repositories.bzl", "ceres_repositories")
|
|
|
|
ceres_repositories()
|
|
|
|
http_archive(
|
|
name = "pybind11_bazel",
|
|
integrity = "sha256-iwRj1wuX2pDS6t6DqiCfhIXisv4y+7CvxSJtZoSAzGw=",
|
|
strip_prefix = "pybind11_bazel-2b6082a4d9d163a52299718113fa41e4b7978db5",
|
|
urls = ["https://github.com/pybind/pybind11_bazel/archive/2b6082a4d9d163a52299718113fa41e4b7978db5.tar.gz"],
|
|
)
|
|
|
|
http_archive(
|
|
name = "pybind11",
|
|
build_file = "@pybind11_bazel//:pybind11-BUILD.bazel",
|
|
integrity = "sha256-LyCgrwuSGBXg4Wnqf+xjkJhpMjWBuJ194VU0aFU/ai0=",
|
|
strip_prefix = "pybind11-3.0.2",
|
|
url = "https://github.com/pybind/pybind11/archive/refs/tags/v3.0.2.tar.gz",
|
|
)
|
|
|
|
http_archive(
|
|
name = "bzlmodrio-opencv",
|
|
sha256 = "947df6f399593a54779b7706da8abaa43865769e02b15533519c800e23be419f",
|
|
url = "https://github.com/wpilibsuite/bzlmodRio-opencv/releases/download/2027.4.13.0-3/bzlmodRio-opencv-2027.4.13.0-3.tar.gz",
|
|
)
|
|
|
|
load("@bzlmodrio-opencv//:maven_cpp_deps.bzl", "setup_legacy_bzlmodrio_opencv_cpp_dependencies")
|
|
|
|
setup_legacy_bzlmodrio_opencv_cpp_dependencies()
|
|
|
|
http_archive(
|
|
name = "bzlmodrio-libssh",
|
|
sha256 = "f8fef627c7b393f7f6ed638e12b80ff90b2cfea11488b15214f25ce1e470723a",
|
|
url = "https://github.com/wpilibsuite/bzlmodRio-libssh/releases/download/2024.0.105-1.bcr1/bzlmodrio-libssh-2024.0.105-1.bcr1.tar.gz",
|
|
)
|
|
|
|
load("@bzlmodrio-libssh//:maven_cpp_deps.bzl", "setup_legacy_bzlmodrio_libssh_cpp_dependencies")
|
|
|
|
setup_legacy_bzlmodrio_libssh_cpp_dependencies()
|
|
|
|
# Capture the repository environmental variables which specify the filter list for what architectures to build in CI.
|
|
load("//shared/bazel/rules:publishing_rule.bzl", "publishing_repo")
|
|
|
|
publishing_repo(
|
|
name = "com_wpilib_allwpilib_publishing_config",
|
|
)
|