gnu: Add go-github-com-multiformats-go-multiaddr-0.12.
* gnu/packages/golang-web.scm (go-github-com-multiformats-go-multiaddr-0.12): New variable. Change-Id: I27e70dc3a393bd72f2f43fbc2607ea105caccaef Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
837841ed66
commit
79bbd178f1
1 changed files with 27 additions and 0 deletions
|
@ -56,6 +56,7 @@
|
||||||
#:use-module (gnu packages golang-compression)
|
#:use-module (gnu packages golang-compression)
|
||||||
#:use-module (gnu packages golang-crypto)
|
#:use-module (gnu packages golang-crypto)
|
||||||
#:use-module (gnu packages golang-xyz)
|
#:use-module (gnu packages golang-xyz)
|
||||||
|
#:use-module (gnu packages ipfs)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages web))
|
#:use-module (gnu packages web))
|
||||||
|
|
||||||
|
@ -1341,6 +1342,32 @@ following:
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
;; It's for the Kubo update; remove it when it is no longer needed.
|
||||||
|
(define-public go-github-com-multiformats-go-multiaddr-0.12
|
||||||
|
(package
|
||||||
|
(inherit go-github-com-multiformats-go-multiaddr)
|
||||||
|
(name "go-github-com-multiformats-go-multiaddr")
|
||||||
|
(version "0.12.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/multiformats/go-multiaddr")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1rn02yn7494r7ayn585bbsddprbn8wdccxs4n2k5dmll4dyd39mp"))))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:go go-1.21
|
||||||
|
#:import-path "github.com/multiformats/go-multiaddr"))
|
||||||
|
(native-inputs (list go-github-com-stretchr-testify))
|
||||||
|
(propagated-inputs (list go-github-com-ipfs-go-cid
|
||||||
|
go-github-com-multiformats-go-multibase
|
||||||
|
go-github-com-multiformats-go-varint
|
||||||
|
go-github-com-multiformats-go-multihash-0.2.3
|
||||||
|
go-golang-org-x-exp-2023))))
|
||||||
|
|
||||||
(define-public go-github-com-multiformats-go-multiaddr-net
|
(define-public go-github-com-multiformats-go-multiaddr-net
|
||||||
;; This commit is from <2018-10-01> and associated with GX package manager,
|
;; This commit is from <2018-10-01> and associated with GX package manager,
|
||||||
;; since that time the project has changed versing stile and GX is dropped.
|
;; since that time the project has changed versing stile and GX is dropped.
|
||||||
|
|
Reference in a new issue