mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: go-github-com-libp2p-go-libp2p-crypto: Move to (gnu packages golang-crypto).
* gnu/packages/golang.scm (go-github-com-libp2p-go-libp2p-crypto): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: I407bec9b36d61475b2a555643f8bc89b623452e9
This commit is contained in:
parent
91c79f376a
commit
7c4e22b4ad
2 changed files with 29 additions and 28 deletions
|
@ -38,6 +38,35 @@ (define-module (gnu packages golang-crypto)
|
|||
;;;
|
||||
;;; Code:
|
||||
|
||||
(define-public go-github-com-libp2p-go-libp2p-crypto
|
||||
(let ((commit "7240b40a3ddc47c4d17c15baabcbe45e5219171b")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "go-github-com-libp2p-go-libp2p-crypto")
|
||||
(version (git-version "2.0.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/libp2p/go-libp2p-crypto")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0qwpy57qv5143l9dlfwfvpqsxdd2i4zwnawx1w4pmgxxim3nw1wb"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/libp2p/go-libp2p-crypto"))
|
||||
(native-inputs
|
||||
(list go-github-com-btcsuite-btcd-btcec
|
||||
go-github-com-gogo-protobuf
|
||||
go-github-com-minio-sha256-simd
|
||||
go-golang-org-x-crypto))
|
||||
(home-page
|
||||
"https://github.com/libp2p/go-libp2p-crypto")
|
||||
(synopsis "Various cryptographic utilities used by IPFS")
|
||||
(description "Various cryptographic utilities used by IPFS")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-multiformats-go-multihash
|
||||
(let ((commit "97cdb562a04c6ef66d8ed40cd62f8fbcddd396d6")
|
||||
(revision "0"))
|
||||
|
|
|
@ -5868,34 +5868,6 @@ (define-public go-github-com-minio-sha256-simd
|
|||
Architecture Processors\" by J. Guilford et al.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-libp2p-go-libp2p-crypto
|
||||
(let ((commit "7240b40a3ddc47c4d17c15baabcbe45e5219171b")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "go-github-com-libp2p-go-libp2p-crypto")
|
||||
(version (git-version "2.0.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/libp2p/go-libp2p-crypto")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0qwpy57qv5143l9dlfwfvpqsxdd2i4zwnawx1w4pmgxxim3nw1wb"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/libp2p/go-libp2p-crypto"))
|
||||
(native-inputs
|
||||
(list go-golang-org-x-crypto go-github-com-btcsuite-btcd-btcec
|
||||
go-github-com-gogo-protobuf go-github-com-minio-sha256-simd))
|
||||
(home-page
|
||||
"https://github.com/libp2p/go-libp2p-crypto")
|
||||
(synopsis "Various cryptographic utilities used by IPFS")
|
||||
(description "Various cryptographic utilities used by IPFS")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-cloudflare-circl
|
||||
(package
|
||||
(name "go-github-com-cloudflare-circl")
|
||||
|
|
Loading…
Reference in a new issue