diff options
| author | Sören Tempel <soeren+git@soeren-tempel.net> | 2025-12-01 23:07:07 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-18 23:19:27 +0000 |
| commit | c749fd2d1035046c67a2ae88ee3fb79f44d518d9 (patch) | |
| tree | bc1cbb63facab4fb5771102f317ddb7c060f596e /gnu | |
| parent | c6ec96a94d5e7fc2f3a76a52f933c03ab608ad84 (diff) | |
gnu: Add go-github-com-tliron-glsp.
* gnu/packages/golang-xyz.scm (go-github-com-tliron-glsp): New variable.
Change-Id: I037cb34d6a9ef70c1a9593eac40c634031df34c0
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index f530edd8bf..6c803329e6 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -22465,6 +22465,38 @@ supported by the time package @end itemize") (license license:expat))) +(define-public go-github-com-tliron-glsp + (package + (name "go-github-com-tliron-glsp") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tliron/glsp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vz4idndpcxrkjck6m0azdg8zsgcxcchf0ldhnkr8fj3z2sllljr")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/tliron/glsp")) + (propagated-inputs (list go-github-com-sasha-s-go-deadlock + go-github-com-tliron-kutil + go-github-com-sourcegraph-jsonrpc2 + go-github-com-pkg-errors + go-github-com-gorilla-websocket + go-golang-org-x-term + go-golang-org-x-crypto + go-github-com-zchee-color)) + (home-page "https://github.com/tliron/glsp") + (synopsis "Language Server Protocol SDK for Golang") + (description + "Implementation of the @acronym{LSP, language server protocol} +for Golang, allowing the creating of custom language servers.") + (license license:asl2.0))) + (define-public go-github-com-tliron-kutil (package (name "go-github-com-tliron-kutil") |
