gopls: build modernize and gofix binaries (#388985)

This commit is contained in:
Jörg Thalheim
2025-03-24 16:51:25 +01:00
committed by GitHub

View File

@@ -23,8 +23,12 @@ buildGoModule rec {
doCheck = false;
# Only build gopls, and not the integration tests or documentation generator.
subPackages = [ "." ];
# Only build gopls, gofix, modernize, and not the integration tests or documentation generator.
subPackages = [
"."
"internal/analysis/gofix/cmd/gofix"
"internal/analysis/modernize/cmd/modernize"
];
meta = with lib; {
description = "Official language server for the Go language";