guix_mirror_bot pushed a commit to branch master
in repository guix.

commit dda1297ee8651021c0bcb8443544b2c29c636790
Author: Maxim Cournoyer <maxim.courno...@gmail.com>
AuthorDate: Fri May 30 14:38:31 2025 +0900

    gnu: Add go-go-lsp-dev-pkg.
    
    * gnu/packages/golang-xyz.scm (go-go-lsp-dev-pkg): New variable.
    
    Change-Id: I6b4997d06ce8d67088d3c774fe5683d26f58d86a
    Modified-by: Sharlatan Hellseher <sharlata...@gmail.ccom>
    Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com>
---
 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 8abbb3554a..95f6cb7cc4 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -18163,6 +18163,30 @@ word on a list of words, if none is found, look for a 
similar word.")
 JSON-RPC 2 specification for Go.")
     (license license:bsd-3)))
 
+(define-public go-go-lsp-dev-pkg
+  (package
+    (name "go-go-lsp-dev-pkg")
+    (version "0.0.0-20210717090340-384b27a52fb2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/go-language-server/pkg";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0n6mskf5g4m1h6hc12rwl622mn21a695kk7f2ldb5hdmlwib852g"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:import-path "go.lsp.dev/pkg"))
+    (home-page "https://go.lsp.dev/pkg";)
+    (synopsis "Library for the Go Language Server project")
+    (description
+     "Collection of Go modules for the Go Language Server project.")
+    (license license:bsd-3)))
+
 (define-public go-go-etcd-io-bbolt
   (package
     (name "go-go-etcd-io-bbolt")

Reply via email to