gnu: go-github-com-multiformats-go-multiaddr: Move to golang-web.
* gnu/packages/golang.scm (go-github-com-multiformats-go-multiaddr): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: I31d9e4babae22a0c9b3bd41ce23bd30c265956cfmaster
parent
791578befb
commit
fe43dfb5c3
|
@ -1,4 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
||||||
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
||||||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||||
|
@ -1234,6 +1235,51 @@ router.")
|
||||||
(description "@code{bluemonday} is a HTML sanitizer implemented in Go.")
|
(description "@code{bluemonday} is a HTML sanitizer implemented in Go.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-multiformats-go-multiaddr
|
||||||
|
;; 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.
|
||||||
|
;; Current versioned tag is v0.12.2 <2024-01-26>.
|
||||||
|
(let ((commit "fe1c46f8be5af4aff4db286e08839295bd922efb")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-multiformats-go-multiaddr")
|
||||||
|
(version (git-version "1.3.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/multiformats/go-multiaddr")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0p5f8h098a4yjjmzsgqs7vhx1iqifb8izwg3559cr4h7clkpzznh"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/multiformats/go-multiaddr"))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-gxed-hashland-keccakpg
|
||||||
|
go-github-com-minio-blake2b-simd
|
||||||
|
go-github-com-minio-sha256-simd
|
||||||
|
go-github-com-mr-tron-base58
|
||||||
|
go-github-com-multiformats-go-multihash
|
||||||
|
go-github-com-spaolacci-murmur3
|
||||||
|
go-golang-org-x-crypto))
|
||||||
|
(home-page "https://github.com/multiformats/go-multiaddr")
|
||||||
|
(synopsis "Composable and future-proof network addresses")
|
||||||
|
(description
|
||||||
|
"Multiaddr is a standard way to represent addresses that does the
|
||||||
|
following:
|
||||||
|
|
||||||
|
@itemize
|
||||||
|
@item Support any standard network protocols.
|
||||||
|
@item Self-describe (include protocols).
|
||||||
|
@item Have a binary packed format.
|
||||||
|
@item Have a nice string representation.
|
||||||
|
@item Encapsulate well.
|
||||||
|
@end itemize\n")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public go-github-com-nwidger-jsoncolor
|
(define-public go-github-com-nwidger-jsoncolor
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-nwidger-jsoncolor")
|
(name "go-github-com-nwidger-jsoncolor")
|
||||||
|
|
|
@ -5176,48 +5176,6 @@ maps, slices, or pointers, and copy their data as well instead of just their
|
||||||
references.")
|
references.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-multiformats-go-multiaddr
|
|
||||||
(let ((commit "fe1c46f8be5af4aff4db286e08839295bd922efb")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
|
||||||
(name "go-github-com-multiformats-go-multiaddr")
|
|
||||||
(version (git-version "1.3.0" revision commit))
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/multiformats/go-multiaddr")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0p5f8h098a4yjjmzsgqs7vhx1iqifb8izwg3559cr4h7clkpzznh"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path
|
|
||||||
"github.com/multiformats/go-multiaddr"))
|
|
||||||
(native-inputs
|
|
||||||
(list go-github-com-multiformats-go-multihash
|
|
||||||
go-github-com-gxed-hashland-keccakpg
|
|
||||||
go-github-com-minio-blake2b-simd
|
|
||||||
go-github-com-minio-sha256-simd
|
|
||||||
go-github-com-mr-tron-base58
|
|
||||||
go-github-com-spaolacci-murmur3
|
|
||||||
go-golang-org-x-crypto))
|
|
||||||
(home-page "https://github.com/multiformats/go-multiaddr")
|
|
||||||
(synopsis "Composable and future-proof network addresses")
|
|
||||||
(description "Multiaddr is a standard way to represent addresses that
|
|
||||||
does the following:
|
|
||||||
|
|
||||||
@itemize
|
|
||||||
@item Support any standard network protocols.
|
|
||||||
@item Self-describe (include protocols).
|
|
||||||
@item Have a binary packed format.
|
|
||||||
@item Have a nice string representation.
|
|
||||||
@item Encapsulate well.
|
|
||||||
@end itemize\n")
|
|
||||||
(license license:expat))))
|
|
||||||
|
|
||||||
(define-public go-github-com-multiformats-go-multiaddr-net
|
(define-public go-github-com-multiformats-go-multiaddr-net
|
||||||
(let ((commit "1cb9a0e8a6de3c8a10f6cee60d01d793603c4f7e")
|
(let ((commit "1cb9a0e8a6de3c8a10f6cee60d01d793603c4f7e")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Reference in New Issue