Description
The Nix installation path currently fails to build.
Reproduction
nix profile install github:basecamp/basecamp-cli
I also reproduced the same failure via Devbox:
devbox global add github:basecamp/basecamp-cli
Error
go: go.mod requires go >= 1.26.4 (running go 1.26.0; GOTOOLCHAIN=local)
Relevant information
go.mod contains:
The flake currently pins nixpkgs revision:
400de68cd101e8cfebffea121397683caf7f5a34
In nix/package.nix, the package is built with go_1_26:
buildGoModule.override { go = go_1_26; }
In the pinned nixpkgs revision, pkgs/development/compilers/go/1.26.nix defines:
which matches the version reported in the build log:
Because the build runs with GOTOOLCHAIN=local, it cannot automatically download a newer Go toolchain and the build aborts.
Expected behavior
The installation method documented in the README should build successfully:
nix profile install github:basecamp/basecamp-cli
Description
The Nix installation path currently fails to build.
Reproduction
I also reproduced the same failure via Devbox:
Error
Relevant information
go.modcontains:The flake currently pins nixpkgs revision:
In nix/package.nix, the package is built with
go_1_26:In the pinned nixpkgs revision, pkgs/development/compilers/go/1.26.nix defines:
which matches the version reported in the build log:
Because the build runs with
GOTOOLCHAIN=local, it cannot automatically download a newer Go toolchain and the build aborts.Expected behavior
The installation method documented in the README should build successfully: