Miguel Young de la Sota | 98cfa22 | 2022-04-06 15:31:06 -0400 | [diff] [blame] | 1 | # Copyright lowRISC contributors. |
| 2 | # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | |
| 5 | load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| 6 | |
| 7 | def go_repos(): |
| 8 | http_archive( |
| 9 | name = "io_bazel_rules_go", |
| 10 | sha256 = "d1ffd055969c8f8d431e2d439813e42326961d0942bdf734d2c95dc30c369566", |
| 11 | urls = [ |
| 12 | "https://github.com/bazelbuild/rules_go/releases/download/v0.24.5/rules_go-v0.24.5.tar.gz", |
| 13 | ], |
| 14 | ) |
| 15 | http_archive( |
| 16 | name = "bazel_gazelle", |
| 17 | sha256 = "b85f48fa105c4403326e9525ad2b2cc437babaa6e15a3fc0b1dbab0ab064bc7c", |
| 18 | urls = [ |
| 19 | "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.2/bazel-gazelle-v0.22.2.tar.gz", |
| 20 | ], |
| 21 | ) |