| # Copyright lowRISC contributors. |
| # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| |
| def crt_repos(local = None): |
| if local: |
| native.local_repository( |
| name = "crt", |
| path = local, |
| ) |
| else: |
| maybe( |
| http_archive, |
| name = "crt", |
| url = "https://github.com/lowRISC/crt/archive/refs/tags/v0.3.4.tar.gz", |
| sha256 = "01a66778d1a0d5bbfb4ba30e72bd6876d0c20766d0b1921ab36ca3350cb48c60", |
| strip_prefix = "crt-0.3.4", |
| ) |