guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ca6d845b331e411f503d2f89988cf1835f8ab32b
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Fri May 30 14:11:00 2025 +0900
gnu: Add go-go-lsp-dev-jsonrpc2.
* gnu/packages/golang-xyz.scm (go-go-lsp-dev-jsonrpc2): New variable.
Change-Id: Idfe0002e518ed62c77be8cf0dbf16d4d37326574
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 35cca4baf6..8abbb3554a 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -18139,6 +18139,30 @@ word on a list of words, if none is found, look for a
similar word.")
@url{https://github.com/alecthomas/kong, Kong CLI parser}.")
(license license:bsd-3)))
+(define-public go-go-lsp-dev-jsonrpc2
+ (package
+ (name "go-go-lsp-dev-jsonrpc2")
+ (version "0.10.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/go-language-server/jsonrpc2")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0mx7h0bak0kr3v18yqaqiq6ya9paw6lv3vqf30k55jsmwmrx5647"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "go.lsp.dev/jsonrpc2"))
+ (propagated-inputs (list go-github-com-segmentio-encoding))
+ (home-page "https://go.lsp.dev/jsonrpc2")
+ (synopsis "JSON-RPC 2 Go library")
+ (description "The @code{jsonrpc2F} package is an implementation of the
+JSON-RPC 2 specification for Go.")
+ (license license:bsd-3)))
+
(define-public go-go-etcd-io-bbolt
(package
(name "go-go-etcd-io-bbolt")