nixpkgs/pkgs/development/tools/gopls/default.nix

28 lines
735 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchgit }:
2020-04-23 08:41:04 +01:00
buildGoModule rec {
pname = "gopls";
2021-01-07 18:38:46 +00:00
version = "0.6.2";
2020-04-23 08:41:04 +01:00
src = fetchgit {
rev = "gopls/v${version}";
url = "https://go.googlesource.com/tools";
2021-01-07 18:38:46 +00:00
sha256 = "0hbfxdsbfz044vw8zp223ni6m7gcwqpff4xpjiqmihhgga5849lf";
2020-04-23 08:41:04 +01:00
};
modRoot = "gopls";
2021-01-07 18:38:46 +00:00
vendorSha256 = "0r9bffgi9ainqrl4kraqy71rgwdfcbqmv3srs12h3xvj0w5ya5rz";
2020-04-23 08:41:04 +01:00
doCheck = false;
# Only build gopls, and not the integration tests or documentation generator.
subPackages = [ "." ];
meta = with lib; {
2020-04-23 08:41:04 +01:00
description = "Official language server for the Go language";
homepage = "https://github.com/golang/tools/tree/master/gopls";
license = licenses.bsd3;
2020-07-16 13:32:18 +01:00
maintainers = with maintainers; [ mic92 zimbatm ];
2020-04-23 08:41:04 +01:00
};
2020-07-16 13:32:18 +01:00
}