blob: c71d1a7c2601ef374e8cae928c8125f5342f5abc [file] [log] [blame]
Miguel Young de la Sota98cfa222022-04-06 15:31:06 -04001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4
5load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
6
7def 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 )