mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
614 B
Nix
22 lines
614 B
Nix
{ stdenv, go, buildGoModule, fetchgit }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gopls";
|
|
version = "0.4.1";
|
|
|
|
src = fetchgit {
|
|
rev = "gopls/v${version}";
|
|
url = "https://go.googlesource.com/tools";
|
|
sha256 = "18migk7arxm8ysfzidl7mdr069fxym9bfi6zisj7dliczw0qnkzv";
|
|
};
|
|
|
|
modRoot = "gopls";
|
|
vendorSha256 = "1jaav6c5vybgks5hc164is0i7h097c5l75s7w3wi5a3zyzkbiyny";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Official language server for the Go language";
|
|
homepage = "https://github.com/golang/tools/tree/master/gopls";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
};
|
|
} |