mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 23:28:29 +01:00
gnu: go-github-com-sourcegraph-jsonrpc2: Move to (gnu packages golang-web).
* 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
This commit is contained in:
parent
13ab4abe98
commit
e0060729b5
3 changed files with 27 additions and 26 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -12909,32 +12909,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")
|
||||
|
|
Loading…
Reference in a new issue