[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66827] [PATCH 09/67] gnu: go-github-com-sourcegraph-jsonrpc2: Move
From: |
Sharlatan Hellseher |
Subject: |
[bug#66827] [PATCH 09/67] gnu: go-github-com-sourcegraph-jsonrpc2: Move to (gnu packages golang-web). |
Date: |
Wed, 8 Nov 2023 00:40:46 +0000 |
* gnu/packages/golang.scm (go-github-com-sourcegraph-jsonrpc2): Move from
here...
* gnu/packages/golang-web.scm: ...to here.
* gnu/packages/databases.scm: Add (gnu packages golang-web) module.
Change-Id: Idda2e18ae5d3e19f72265bdd017eadddc25bcad9
---
gnu/packages/databases.scm | 1 +
gnu/packages/golang-web.scm | 26 ++++++++++++++++++++++++++
gnu/packages/golang.scm | 26 --------------------------
3 files changed, 27 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 3eeee9fadf..5df8ea2bb8 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -108,6 +108,7 @@ (define-module (gnu packages databases)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages golang)
#:use-module (gnu packages golang-check)
+ #:use-module (gnu packages golang-web)
#:use-module (gnu packages gperf)
#:use-module (gnu packages gtk)
#:use-module (gnu packages guile)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 0ca70cec38..f9e7039707 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -208,6 +208,32 @@ (define-public go-github-com-puerkitobio-goquery
to jQuery to the Go language.")
(license license:bsd-3)))
+(define-public go-github-com-sourcegraph-jsonrpc2
+ (package
+ (name "go-github-com-sourcegraph-jsonrpc2")
+ (version "0.1.0")
+ (home-page "https://github.com/sourcegraph/jsonrpc2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1dk0w32k96vxrwnmm24wqx337dn8ylch65qwrbc3wh7whw2xx71q"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/sourcegraph/jsonrpc2"))
+ (propagated-inputs
+ (list go-github-com-daviddengcn-go-colortext
+ go-github-com-gorilla-websocket
+ go-github-com-motemen-go-colorine))
+ (synopsis "Provides a client and server implementation of JSON-RPC 2.0")
+ (description
+ "Package jsonrpc2 provides a Go implementation of JSON-RPC 2.0.")
+ (license license:expat)))
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index ed65b5d978..5e7d321a2b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -12646,32 +12646,6 @@ (define-public go-github-com-google-shlex
using shell-style rules for quoting and commenting.")
(license license:asl2.0)))
-(define-public go-github-com-sourcegraph-jsonrpc2
- (package
- (name "go-github-com-sourcegraph-jsonrpc2")
- (version "0.1.0")
- (home-page "https://github.com/sourcegraph/jsonrpc2")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url home-page)
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
"1dk0w32k96vxrwnmm24wqx337dn8ylch65qwrbc3wh7whw2xx71q"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/sourcegraph/jsonrpc2"))
- (propagated-inputs
- (list
- go-github-com-daviddengcn-go-colortext
- go-github-com-motemen-go-colorine
- go-github-com-gorilla-websocket))
- (synopsis "Provides a client and server implementation of JSON-RPC 2.0")
- (description
- "Package jsonrpc2 provides a Go implementation of JSON-RPC 2.0.")
- (license license:expat)))
-
(define-public go-github-com-disintegration-imaging
(package
(name "go-github-com-disintegration-imaging")
--
2.41.0
- [bug#66827] [PATCH 01/67] gnu: Add (gnu packages golang-web) module., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 02/67] gnu: go-github-com-gorilla-mux: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 03/67] gnu: go-github-com-gorilla-css: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 04/67] gnu: go-github-com-aymerick-douceur: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 05/67] gnu: go-github-com-andybalholm-cascadia: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 07/67] gnu: go-github-com-chris-ramon-douceur: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 06/67] gnu: go-github-com-puerkitobio-goquery: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 09/67] gnu: go-github-com-sourcegraph-jsonrpc2: Move to (gnu packages golang-web).,
Sharlatan Hellseher <=
- [bug#66827] [PATCH 08/67] gnu: go-github-com-gorilla-websocket: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 11/67] gnu: go-github-com-gorilla-handlers: Remove input labels., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 12/67] gnu: go-github-com-felixge-httpsnoop: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 17/67] gnu: go-github-com-jcmturner-dnsutils-v2: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 15/67] gnu: go-github-com-jcmturner-gokrb5-v8: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 19/67] gnu: go-github-com-jcmturner-goidentity-v6: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 20/67] gnu: go-github-com-jcmturner-goidentity-v6: Adjust inputs., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 21/67] gnu: go-github-com-gorilla-csrf: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 26/67] gnu: go-github-com-google-safehtml: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07
- [bug#66827] [PATCH 10/67] gnu: go-github-com-gorilla-handlers: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/11/07