gopls: don't build integration tests or documentation generator (#101641)

Not only are these not used, but they also have super generic names,
which is confusing when they appear on the path, and possibly leads
to conflicts with other binaries.

authored by

Luke Granger-Brown and committed by
GitHub
a30a084b 655d9b51

+3
+3
pkgs/development/tools/gopls/default.nix
··· 15 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Official language server for the Go language"; 20 homepage = "https://github.com/golang/tools/tree/master/gopls";
··· 15 16 doCheck = false; 17 18 + # Only build gopls, and not the integration tests or documentation generator. 19 + subPackages = [ "." ]; 20 + 21 meta = with stdenv.lib; { 22 description = "Official language server for the Go language"; 23 homepage = "https://github.com/golang/tools/tree/master/gopls";