From c9be633aa4c4c535f47af88181b15dca5efebfed Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Wed, 22 May 2024 13:50:17 +0200 Subject: [PATCH] Use go 1.20 for now Using go 1.21 fails with `GOPROXY list is not the empty string, but contains no entries`. See https://github.com/tweag/rules_nixpkgs/pull/417 --- WORKSPACE | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index ea8eb52..6a3c076 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -115,7 +115,10 @@ http_archive( load("@rules_nixpkgs_go//:go.bzl", "nixpkgs_go_configure") -nixpkgs_go_configure(repository = "@nixpkgs") +nixpkgs_go_configure( + attribute_path = "go_1_20", + repository = "@nixpkgs", +) load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies")