Unverified Commit beb00e74 authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

gopls: build modernize and gofix binaries (#388985)

parents 51a47f1a 06d13968
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -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";