From b407fdef70541e735345b3b5a502b1a70de4c35d Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 26 Aug 2023 21:08:16 -0700 Subject: [PATCH] flake.nix: use Go 1.21 to build tailscale, for real this time The previous change just switched the Go version used in the dev environment (for use with e.g. direnv), not the version used for the distribution build. Oops. Updates #cleanup Signed-off-by: David Anderson --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 26fc12690..fd81011a8 100644 --- a/flake.nix +++ b/flake.nix @@ -70,7 +70,7 @@ # So really, this flake is for tailscale devs to dogfood with, if # you're an end user you should be prepared for this flake to not # build periodically. - tailscale = pkgs: pkgs.buildGo120Module rec { + tailscale = pkgs: pkgs.buildGo121Module rec { name = "tailscale"; src = ./.;