From b3daaad7130bd25dc6ba0bca9d22348f8a4f11e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey?= Date: Tue, 25 Aug 2026 14:26:53 -0700 Subject: [PATCH 1/2] fix: pin golink to last go 1.26.5-compatible commit golink's main branch bumped go.mod minimum to 1.26.6 which is not yet in nixpkgs (currently 1.26.5), breaking spore builds. Pin to 52e1fd1 which is the last commit that still only requires 1.26.5. Co-Authored-By: Claude Sonnet 4.6 Entire-Checkpoint: e68be6c72126 --- flake.lock | 7 ++++--- flake.nix | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 57e813f1..43243423 100644 --- a/flake.lock +++ b/flake.lock @@ -262,16 +262,17 @@ ] }, "locked": { - "lastModified": 1787241322, - "narHash": "sha256-RUS9EtnG0VwRzOV0a0f8vC1nxpjSRONSHdLaQ2Z5aUE=", + "lastModified": 1787148908, + "narHash": "sha256-1jJGOXOkQtfL7h8cKWNS4btJGMQjdzSiUPLdosZbajM=", "owner": "tailscale", "repo": "golink", - "rev": "3f9300f2b03f29f1a2eb704ff419d849f47aabf4", + "rev": "52e1fd108b6362c7269fc834f854146b21a3bfc7", "type": "github" }, "original": { "owner": "tailscale", "repo": "golink", + "rev": "52e1fd108b6362c7269fc834f854146b21a3bfc7", "type": "github" } }, diff --git a/flake.nix b/flake.nix index df6cc34f..d2f95375 100644 --- a/flake.nix +++ b/flake.nix @@ -45,7 +45,8 @@ inputs.nixpkgs.follows = "nixpkgs"; }; golink = { - url = "github:tailscale/golink"; + # Pinned to last commit compatible with go 1.26.5 (nixpkgs); next commit bumped to 1.26.6 + url = "github:tailscale/golink/52e1fd108b6362c7269fc834f854146b21a3bfc7"; inputs.nixpkgs.follows = "nixpkgs"; inputs.systems.follows = "systems"; }; From c112878423d09a7debd3abde7abf5bc504ee728f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey?= Date: Tue, 25 Aug 2026 14:33:48 -0700 Subject: [PATCH 2/2] chore: reference issue #536 in golink pin comment Co-Authored-By: Claude Sonnet 4.6 Entire-Checkpoint: 95aedf60bd6d --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index d2f95375..70a3e1f8 100644 --- a/flake.nix +++ b/flake.nix @@ -46,6 +46,7 @@ }; golink = { # Pinned to last commit compatible with go 1.26.5 (nixpkgs); next commit bumped to 1.26.6 + # Unpin when nixpkgs reaches go 1.26.6 — tracked in https://github.com/stackptr/rc/issues/536 url = "github:tailscale/golink/52e1fd108b6362c7269fc834f854146b21a3bfc7"; inputs.nixpkgs.follows = "nixpkgs"; inputs.systems.follows = "systems";