gnu: go-github-com-cloudflare-circl: Move to (gnu packages golang-crypto).
* gnu/packages/golang.scm (go-github-com-cloudflare-circl): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: I6d01b67c795d32387e0b77f1ea53d3a4a8f9939b
This commit is contained in:
parent
857be8fb47
commit
06e70201f3
2 changed files with 29 additions and 29 deletions
|
@ -163,6 +163,35 @@ been designed so it can be used as a standalone package for any projects
|
||||||
needing to use secp256k1 elliptic curve cryptography.")
|
needing to use secp256k1 elliptic curve cryptography.")
|
||||||
(license license:isc))))
|
(license license:isc))))
|
||||||
|
|
||||||
|
(define-public go-github-com-cloudflare-circl
|
||||||
|
(package
|
||||||
|
(name "go-github-com-cloudflare-circl")
|
||||||
|
(version "1.3.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/cloudflare/circl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "05hk5svprcjrj6k4mg4kd732pnb658llqv04z6xrcl5v77jda2kd"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/cloudflare/circl"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-bwesterb-go-ristretto
|
||||||
|
go-golang-org-x-crypto
|
||||||
|
go-golang-org-x-sys))
|
||||||
|
(home-page "https://blog.cloudflare.com/introducing-circl")
|
||||||
|
(synopsis "Cloudflare Interoperable Reusable Cryptographic Library")
|
||||||
|
(description "CIRCL (Cloudflare Interoperable, Reusable Cryptographic
|
||||||
|
Library) is a collection of cryptographic primitives written in Go. The goal
|
||||||
|
of this library is to be used as a tool for experimental deployment of
|
||||||
|
cryptographic algorithms targeting Post-Quantum (PQ) and Elliptic Curve
|
||||||
|
Cryptography (ECC).")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-emersion-go-pgpmail
|
(define-public go-github-com-emersion-go-pgpmail
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-emersion-go-pgpmail")
|
(name "go-github-com-emersion-go-pgpmail")
|
||||||
|
|
|
@ -5630,35 +5630,6 @@ implementations are described in \"Fast SHA-256 Implementations on Intel
|
||||||
Architecture Processors\" by J. Guilford et al.")
|
Architecture Processors\" by J. Guilford et al.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-cloudflare-circl
|
|
||||||
(package
|
|
||||||
(name "go-github-com-cloudflare-circl")
|
|
||||||
(version "1.3.6")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/cloudflare/circl")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"05hk5svprcjrj6k4mg4kd732pnb658llqv04z6xrcl5v77jda2kd"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/cloudflare/circl"))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-github-com-bwesterb-go-ristretto
|
|
||||||
go-golang-org-x-crypto
|
|
||||||
go-golang-org-x-sys))
|
|
||||||
(home-page "https://blog.cloudflare.com/introducing-circl")
|
|
||||||
(synopsis "Cloudflare Interoperable Reusable Cryptographic Library")
|
|
||||||
(description "CIRCL (Cloudflare Interoperable, Reusable Cryptographic
|
|
||||||
Library) is a collection of cryptographic primitives written in Go. The goal
|
|
||||||
of this library is to be used as a tool for experimental deployment of
|
|
||||||
cryptographic algorithms targeting Post-Quantum (PQ) and Elliptic Curve
|
|
||||||
Cryptography (ECC).")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-github-com-mr-tron-base58
|
(define-public go-github-com-mr-tron-base58
|
||||||
(let ((commit "d724c80ecac7b49e4e562d58b2b4f4ee4ed8c312")
|
(let ((commit "d724c80ecac7b49e4e562d58b2b4f4ee4ed8c312")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Reference in a new issue