mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
17 lines
671 B
Python
17 lines
671 B
Python
"""hermetic cc toolchain (bazel-zig-cc) build rules"""
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
def hermetic_cc_deps():
|
|
"""Loads the dependencies for hermetic_cc_toolchain."""
|
|
|
|
http_archive(
|
|
name = "hermetic_cc_toolchain",
|
|
urls = [
|
|
"https://cdn.confidential.cloud/constellation/cas/sha256/28fc71b9b3191c312ee83faa1dc65b38eb70c3a57740368f7e7c7a49bedf3106",
|
|
"https://github.com/uber/hermetic_cc_toolchain/releases/download/v2.1.2/hermetic_cc_toolchain-v2.1.2.tar.gz",
|
|
],
|
|
type = "tar.gz",
|
|
sha256 = "28fc71b9b3191c312ee83faa1dc65b38eb70c3a57740368f7e7c7a49bedf3106",
|
|
)
|