From 4d046623fe61e96ffd94fe78a81ca196499ceb2d Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Thu, 14 May 2026 09:23:29 +0200 Subject: [PATCH] gopls: drop modernize binary modernize from gopls is deprecated, there is a successor in the gotools package. Signed-off-by: Paul Meyer --- pkgs/by-name/go/gopls/package.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/by-name/go/gopls/package.nix b/pkgs/by-name/go/gopls/package.nix index c097a90c3341..39f1a2d2bee2 100644 --- a/pkgs/by-name/go/gopls/package.nix +++ b/pkgs/by-name/go/gopls/package.nix @@ -28,11 +28,7 @@ buildGoLatestModule (finalAttrs: { doCheck = false; - # Only build gopls & modernize, not the integration tests or documentation generator. - subPackages = [ - "." - "internal/analysis/modernize/cmd/modernize" - ]; + subPackages = [ "." ]; doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ];