mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 02:50:20 +01:00
gnu: rust-ctr: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-ctr-0.9, rust-ctr-0.8, rust-ctr-0.6): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: I34938901cac417eace8be453465ba56a7a338f24
This commit is contained in:
parent
1f4c5d496f
commit
639ea48731
2 changed files with 63 additions and 63 deletions
|
@ -1646,6 +1646,69 @@ algorithms.")
|
||||||
hash functions.")
|
hash functions.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-ctr-0.9
|
||||||
|
(package
|
||||||
|
(name "rust-ctr")
|
||||||
|
(version "0.9.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ctr" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0d88b73waamgpfjdml78icxz45d95q7vi2aqa604b0visqdfws83"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-cipher" ,rust-cipher-0.4))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-aes" ,rust-aes-0.8)
|
||||||
|
("rust-cipher" ,rust-cipher-0.4)
|
||||||
|
("rust-hex-literal" ,rust-hex-literal-0.3)
|
||||||
|
("rust-kuznyechik" ,rust-kuznyechik-0.8)
|
||||||
|
("rust-magma" ,rust-magma-0.8))))
|
||||||
|
(home-page "https://docs.rs/ctr/")
|
||||||
|
(synopsis "CTR block mode of operation")
|
||||||
|
(description "This package provides a generic implementations of CTR mode
|
||||||
|
for block ciphers. Mode functionality is accessed using traits from
|
||||||
|
re-exported cipher crate.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-ctr-0.8
|
||||||
|
(package
|
||||||
|
(inherit rust-ctr-0.9)
|
||||||
|
(name "rust-ctr")
|
||||||
|
(version "0.8.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ctr" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1sk1aykwhkny92cnvl6s75dx3fyvfzw5xkd6xz3y7w5anhgvk6q4"))))
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs (("rust-cipher" ,rust-cipher-0.3))))))
|
||||||
|
|
||||||
|
(define-public rust-ctr-0.6
|
||||||
|
(package
|
||||||
|
(inherit rust-ctr-0.8)
|
||||||
|
(name "rust-ctr")
|
||||||
|
(version "0.6.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ctr" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0zvyf13675hrlc37myj97k5ng7m1mj3d9p4ic4yvyhvl9zak0jpv"))))
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs (("rust-cipher" ,rust-cipher-0.2))))))
|
||||||
|
|
||||||
(define-public rust-curve25519-dalek-3
|
(define-public rust-curve25519-dalek-3
|
||||||
(package
|
(package
|
||||||
(name "rust-curve25519-dalek")
|
(name "rust-curve25519-dalek")
|
||||||
|
|
|
@ -16275,69 +16275,6 @@ use with sct crate.")
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
`(("rust-libc-print" ,rust-libc-print-0.1))))))
|
`(("rust-libc-print" ,rust-libc-print-0.1))))))
|
||||||
|
|
||||||
(define-public rust-ctr-0.9
|
|
||||||
(package
|
|
||||||
(name "rust-ctr")
|
|
||||||
(version "0.9.2")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "ctr" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0d88b73waamgpfjdml78icxz45d95q7vi2aqa604b0visqdfws83"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-cipher" ,rust-cipher-0.4))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-aes" ,rust-aes-0.8)
|
|
||||||
("rust-cipher" ,rust-cipher-0.4)
|
|
||||||
("rust-hex-literal" ,rust-hex-literal-0.3)
|
|
||||||
("rust-kuznyechik" ,rust-kuznyechik-0.8)
|
|
||||||
("rust-magma" ,rust-magma-0.8))))
|
|
||||||
(home-page "https://docs.rs/ctr/")
|
|
||||||
(synopsis "CTR block mode of operation")
|
|
||||||
(description "This package provides a generic implementations of CTR mode
|
|
||||||
for block ciphers. Mode functionality is accessed using traits from
|
|
||||||
re-exported cipher crate.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-ctr-0.8
|
|
||||||
(package
|
|
||||||
(inherit rust-ctr-0.9)
|
|
||||||
(name "rust-ctr")
|
|
||||||
(version "0.8.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "ctr" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "1sk1aykwhkny92cnvl6s75dx3fyvfzw5xkd6xz3y7w5anhgvk6q4"))))
|
|
||||||
(arguments
|
|
||||||
`(#:skip-build? #t
|
|
||||||
#:cargo-inputs (("rust-cipher" ,rust-cipher-0.3))))))
|
|
||||||
|
|
||||||
(define-public rust-ctr-0.6
|
|
||||||
(package
|
|
||||||
(inherit rust-ctr-0.8)
|
|
||||||
(name "rust-ctr")
|
|
||||||
(version "0.6.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "ctr" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0zvyf13675hrlc37myj97k5ng7m1mj3d9p4ic4yvyhvl9zak0jpv"))))
|
|
||||||
(arguments
|
|
||||||
`(#:skip-build? #t
|
|
||||||
#:cargo-inputs (("rust-cipher" ,rust-cipher-0.2))))))
|
|
||||||
|
|
||||||
(define-public rust-ctrlc-3
|
(define-public rust-ctrlc-3
|
||||||
(package
|
(package
|
||||||
(name "rust-ctrlc")
|
(name "rust-ctrlc")
|
||||||
|
|
Loading…
Add table
Reference in a new issue