gnu: rust-ecies-ed25519-0.5: Move to (gnu packages crates-crypto).

* gnu/packages/crates-io.scm (rust-ecies-ed25519-0.5): Move from here ...
* gnu/packages/crates-crypto.scm: ... to here.

Change-Id: Icb8a0e6585554f89add3c421dade9bcd8051966b
This commit is contained in:
Efraim Flashner 2024-01-21 19:31:43 +02:00
parent fe5b3e306e
commit f0a2b73c01
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 33 additions and 33 deletions

View file

@ -1751,6 +1751,39 @@ (define-public rust-ecdsa-0.14
("rust-hex-literal" ,rust-hex-literal-0.3)
("rust-sha2" ,rust-sha2-0.10))))))
(define-public rust-ecies-ed25519-0.5
(package
(name "rust-ecies-ed25519")
(version "0.5.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "ecies-ed25519" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1nrmam79mn2y6b235rpq6lhlsfl63275j2yxps86424gh99j720a"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-aes-gcm" ,rust-aes-gcm-0.8)
("rust-curve25519-dalek" ,rust-curve25519-dalek-3)
("rust-digest" ,rust-digest-0.9)
("rust-hex" ,rust-hex-0.4)
("rust-hkdf" ,rust-hkdf-0.10)
("rust-rand" ,rust-rand-0.7)
("rust-ring" ,rust-ring-0.16)
("rust-serde" ,rust-serde-1)
("rust-sha2" ,rust-sha2-0.9)
("rust-thiserror" ,rust-thiserror-1)
("rust-zeroize" ,rust-zeroize-1))))
(home-page "https://github.com/phayes/ecies-ed25519")
(synopsis
"Integrated encryption scheme on Twisted Edwards Curve25519")
(description
"ECIES on Twisted Edwards Curve25519 using AES-GCM and HKDF-SHA256.")
(license (list license:expat license:asl2.0))))
(define-public rust-ed25519-1
(package
(name "rust-ed25519")

View file

@ -20829,39 +20829,6 @@ (define-public rust-ecb-0.1
(description "Electronic Codebook (ECB) block cipher mode of operation")
(license license:expat)))
(define-public rust-ecies-ed25519-0.5
(package
(name "rust-ecies-ed25519")
(version "0.5.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "ecies-ed25519" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1nrmam79mn2y6b235rpq6lhlsfl63275j2yxps86424gh99j720a"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-aes-gcm" ,rust-aes-gcm-0.8)
("rust-curve25519-dalek" ,rust-curve25519-dalek-3)
("rust-digest" ,rust-digest-0.9)
("rust-hex" ,rust-hex-0.4)
("rust-hkdf" ,rust-hkdf-0.10)
("rust-rand" ,rust-rand-0.7)
("rust-ring" ,rust-ring-0.16)
("rust-serde" ,rust-serde-1)
("rust-sha2" ,rust-sha2-0.9)
("rust-thiserror" ,rust-thiserror-1)
("rust-zeroize" ,rust-zeroize-1))))
(home-page "https://github.com/phayes/ecies-ed25519")
(synopsis
"Integrated encryption scheme on Twisted Edwards Curve25519")
(description
"ECIES on Twisted Edwards Curve25519 using AES-GCM and HKDF-SHA256.")
(license (list license:expat license:asl2.0))))
(define-public rust-edit-distance-2
(package
(name "rust-edit-distance")