Commit 06d13968 authored by Paul Meyer's avatar Paul Meyer
Browse files

gopls: build modernize and gofix binaries

parent b580f9b5
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";