Merge pull request #175109 from rski/gopls0.8.4

gopls: 0.8.3 -> 0.8.4
This commit is contained in:
Sandro 2022-05-28 17:12:59 +02:00 committed by GitHub
commit fa66e6d444
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,17 +2,17 @@
buildGoModule rec {
pname = "gopls";
version = "0.8.3";
version = "0.8.4";
src = fetchFromGitHub {
owner = "golang";
repo = "tools";
rev = "gopls/v${version}";
sha256 = "sha256-X5U06TEkf1vfCyV95wkg2qVd7I+8S8UPBgwacG0q85U=";
sha256 = "sha256-3JI6jrWCOgfFefivSDWz3yets4CXnDsvE/iYYms+piU=";
};
modRoot = "gopls";
vendorSha256 = "sha256-p6biMwicaG5peIu6dp+Pzun8TeNWmgW2QpLIZWqnalg=";
vendorSha256 = "sha256-7SkCRu4CGvb0TaL9BR2eeNjGNwViFh6TgtUUxiRjDxA=";
doCheck = false;
@ -23,6 +23,6 @@ buildGoModule rec {
description = "Official language server for the Go language";
homepage = "https://github.com/golang/tools/tree/master/gopls";
license = licenses.bsd3;
maintainers = with maintainers; [ mic92 SuperSandro2000 zimbatm ];
maintainers = with maintainers; [ mic92 rski SuperSandro2000 zimbatm ];
};
}