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.
This commit is contained in:
Luke Granger-Brown 2020-10-28 22:42:07 +00:00 committed by GitHub
parent 655d9b5149
commit a30a084b37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,9 @@ buildGoModule rec {
doCheck = false;
# Only build gopls, and not the integration tests or documentation generator.
subPackages = [ "." ];
meta = with stdenv.lib; {
description = "Official language server for the Go language";
homepage = "https://github.com/golang/tools/tree/master/gopls";