mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-connectrpc-com-connect: Move to golang-web.
* gnu/packages/golang-xyz.scm (go-connectrpc-com-connect): Move from here ... * gnu/packages/golang-web.scm: ... to here. * gnu/packages/ci.scm: Add golang-web module. Change-Id: Ia255d3bfbe3e7da1202b2d40caa40fd63f4ecc65
This commit is contained in:
parent
7d9d4dbb86
commit
7b48ff37cc
3 changed files with 35 additions and 32 deletions
|
@ -46,6 +46,7 @@
|
||||||
#:use-module (gnu packages golang-build)
|
#:use-module (gnu packages golang-build)
|
||||||
#:use-module (gnu packages golang-check)
|
#:use-module (gnu packages golang-check)
|
||||||
#:use-module (gnu packages golang-vcs)
|
#:use-module (gnu packages golang-vcs)
|
||||||
|
#:use-module (gnu packages golang-web)
|
||||||
#:use-module (gnu packages golang-xyz)
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages guile-xyz)
|
#:use-module (gnu packages guile-xyz)
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
;;; Copyright © 2025 Jussi Timperi <jussi.timperi@iki.fi>
|
;;; Copyright © 2025 Jussi Timperi <jussi.timperi@iki.fi>
|
||||||
;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010@zohomail.in>
|
;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010@zohomail.in>
|
||||||
;;; Copyright © 2025 Arthur Rodrigues <arthurhdrodrigues@proton.me>
|
;;; Copyright © 2025 Arthur Rodrigues <arthurhdrodrigues@proton.me>
|
||||||
|
;;; Copyright © 2025 David Thompson <davet@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -274,6 +275,39 @@ corresponds to the highest supported version of the gitea API, but
|
||||||
backwards-compatibility is mostly given.")
|
backwards-compatibility is mostly given.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-connectrpc-com-connect
|
||||||
|
(package
|
||||||
|
(name "go-connectrpc-com-connect")
|
||||||
|
(version "1.18.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/connectrpc/connect-go")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0a6rzp57srhyf66jri62gfsj4ndpfxgb9ln15qdpfwv0xvcffz63"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "connectrpc.com/connect"
|
||||||
|
;; Needs additional dependencies..
|
||||||
|
#:tests? #f))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-google-go-cmp
|
||||||
|
go-golang-org-x-net
|
||||||
|
go-google-golang-org-protobuf))
|
||||||
|
(home-page "https://connectrpc.com/connect")
|
||||||
|
(synopsis "@acronym{RPC, Remote procedure call} framework built on
|
||||||
|
Protocol Buffers")
|
||||||
|
(description
|
||||||
|
"Package @code{connect} is a slim RPC framework built on Protocol Buffers
|
||||||
|
and @code{net/http}. In addition to supporting its own protocol, Connect
|
||||||
|
handlers and clients are wire-compatible with gRPC and gRPC-Web, including
|
||||||
|
streaming.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-git-sr-ht-adnano-go-gemini
|
(define-public go-git-sr-ht-adnano-go-gemini
|
||||||
(package
|
(package
|
||||||
(name "go-git-sr-ht-adnano-go-gemini")
|
(name "go-git-sr-ht-adnano-go-gemini")
|
||||||
|
|
|
@ -23493,38 +23493,6 @@ library.")
|
||||||
" This package provides an command line interface (CLI)
|
" This package provides an command line interface (CLI)
|
||||||
tool."))))
|
tool."))))
|
||||||
|
|
||||||
(define-public go-connectrpc-com-connect
|
|
||||||
(package
|
|
||||||
(name "go-connectrpc-com-connect")
|
|
||||||
(version "1.18.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/connectrpc/connect-go")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "0a6rzp57srhyf66jri62gfsj4ndpfxgb9ln15qdpfwv0xvcffz63"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:import-path "connectrpc.com/connect"
|
|
||||||
;; Needs additional dependencies..
|
|
||||||
#:tests? #f))
|
|
||||||
(propagated-inputs (list go-google-golang-org-protobuf
|
|
||||||
go-golang-org-x-net
|
|
||||||
go-github-com-google-go-cmp))
|
|
||||||
(home-page "https://connectrpc.com/connect")
|
|
||||||
(synopsis "@acronym{RPC, Remote procedure call} framework built on
|
|
||||||
Protocol Buffers")
|
|
||||||
(description
|
|
||||||
"Package @code{connect} is a slim RPC framework built on Protocol Buffers
|
|
||||||
and @code{net/http}. In addition to supporting its own protocol, Connect
|
|
||||||
handlers and clients are wire-compatible with gRPC and gRPC-Web, including
|
|
||||||
streaming.")
|
|
||||||
(license license:asl2.0)))
|
|
||||||
|
|
||||||
(define-public go-csv2table
|
(define-public go-csv2table
|
||||||
(package/inherit go-github-com-olekukonko-tablewriter
|
(package/inherit go-github-com-olekukonko-tablewriter
|
||||||
(name "go-csv2table")
|
(name "go-csv2table")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue