gnu: Add go-github-com-multiformats-go-multiaddr.

* gnu/packages/golang.scm (go-github-com-multiformats-go-multiaddr): New variable.
This commit is contained in:
Pierre Neidhardt 2018-10-24 11:57:39 +02:00
parent 8cb9128173
commit e53121b36f
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 42 additions and 0 deletions

View File

@ -3044,3 +3044,45 @@ package cannot cross compile. But 99% of the time the use for
the current user without cgo. This library does that, enabling the current user without cgo. This library does that, enabling
cross-compilation.") cross-compilation.")
(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.git")
(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
`(("go-github-com-multiformats-go-multihash" ,go-github-com-multiformats-go-multihash)
("go-github-com-gxed-hashland-keccakpg" ,go-github-com-gxed-hashland-keccakpg)
("go-github-com-minio-blake2b-simd" ,go-github-com-minio-blake2b-simd)
("go-github-com-minio-sha256-simd" ,go-github-com-minio-sha256-simd)
("go-github-com-mr-tron-base58" ,go-github-com-mr-tron-base58)
("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
("go-golang-org-x-crypto-union" ,(go-golang-org-x-crypto-union))))
(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))))