gnu: Add go-github-com-cenkalti-rpc2.

* gnu/packages/golang-web.scm (go-github-com-cenkalti-rpc2): New variable.

Change-Id: I16cd7d4412c73d80b8994208f2a77e7c46926d1e
This commit is contained in:
Sharlatan Hellseher 2025-07-07 15:21:42 +01:00
parent c00c1c9032
commit ef70a25c9d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1529,6 +1529,32 @@ exponentially increase and stop increasing when a certain threshold is met.")
pattern.")
(license license:expat)))
(define-public go-github-com-cenkalti-rpc2
(package
(name "go-github-com-cenkalti-rpc2")
(version "1.0.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cenkalti/rpc2")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "04h570v9mm8vmdfadnzds7ynjqps71pwmj0i6hgrcrl66s8qm541"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/cenkalti/rpc2"))
(propagated-inputs
(list go-github-com-cenkalti-hub))
(home-page "https://github.com/cenkalti/rpc2")
(synopsis "Bi-directional RPC in Golang")
(description
"Package rpc2 provides bi-directional RPC client and server similar to
@code{net/rpc}.")
(license license:expat)))
(define-public go-github-com-chris-ramon-douceur
(package
(name "go-github-com-chris-ramon-douceur")