diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-05-30 14:42:56 +0900 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-10 12:31:50 +0100 |
| commit | 762d5107da944b89d45106fb544ffcefd5717b04 (patch) | |
| tree | c8275b06d8a7d2f800c7755b52e77ead160a0cf8 | |
| parent | dda1297ee8651021c0bcb8443544b2c29c636790 (diff) | |
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 <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
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") |
