gopls: 0.8.3 -> 0.8.4

Also add myself to maintainers
This commit is contained in:
Romanos Skiadas 2022-05-28 14:00:47 +03:00
parent 0e6478f420
commit 584b8b9ccf

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 ];
};
}