2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildGoModule, fetchgit }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gopls";
|
2021-10-17 09:34:42 +00:00
|
|
|
version = "0.7.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://go.googlesource.com/tools";
|
2021-10-17 09:34:42 +00:00
|
|
|
rev = "gopls/v${version}";
|
|
|
|
name = "gopls-source-${version}";
|
|
|
|
sha256 = "sha256-aaRaStQ35a/SK4YIR5rjvp8gPxvoNuhLh2AGbr0c6p4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
modRoot = "gopls";
|
2021-10-17 09:34:42 +00:00
|
|
|
vendorSha256 = "sha256-8+sWd48w+ghQzznobBPcCQMuc9HLgOuAZPwD6lbbfj8=";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2020-10-27 00:29:36 +00:00
|
|
|
doCheck = false;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-03 02:18:15 +00:00
|
|
|
# Only build gopls, and not the integration tests or documentation generator.
|
2020-11-03 15:26:42 +00:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Official language server for the Go language";
|
|
|
|
homepage = "https://github.com/golang/tools/tree/master/gopls";
|
|
|
|
license = licenses.bsd3;
|
2021-10-17 09:34:42 +00:00
|
|
|
maintainers = with maintainers; [ mic92 SuperSandro2000 zimbatm ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2020-07-18 16:06:22 +00:00
|
|
|
}
|