guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 762d5107da944b89d45106fb544ffcefd5717b04
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Fri May 30 14:42:56 2025 +0900

    gnu: Add go-go-lsp-dev-uri.
    
    * gnu/packages/golang-xyz.scm (go-go-lsp-dev-uri): New variable.
    
    Change-Id: I1a5b4f7e4729f674c05ae3f410530b852f4a8fd4
    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 95f6cb7cc4..cda2fcf6e3 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -18187,6 +18187,30 @@ JSON-RPC 2 specification for Go.")
      "Collection of Go modules for the Go Language Server project.")
     (license license:bsd-3)))
 
+(define-public go-go-lsp-dev-uri
+  (package
+    (name "go-go-lsp-dev-uri")
+    (version "0.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/go-language-server/uri";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1mz1jnbf46rzs3iy8a601rdfmify6x56jsw2wsjvmyczn4vz8qwc"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "go.lsp.dev/uri"))
+    (propagated-inputs (list go-github-com-google-go-cmp))
+    (home-page "https://go.lsp.dev/uri";)
+    (synopsis "Go library for URI (uniform resource identifier)")
+    (description
+     "The @code{uri} package implements the URI Uniform Resource
+Identifier (RFC3986) specification in Go.")
+    (license license:bsd-3)))
+
 (define-public go-go-etcd-io-bbolt
   (package
     (name "go-go-etcd-io-bbolt")

Reply via email to