mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: rust-cmac-0.7: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-cmac-0.7): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: Ie4599f60ed2e1c8aa04c165905a57f2ce51d1c69
This commit is contained in:
parent
7d2e2a5351
commit
077c0eb2ca
2 changed files with 30 additions and 30 deletions
|
@ -1108,6 +1108,36 @@ (define-public rust-cipher-0.2
|
|||
(sha256
|
||||
(base32 "00b8imbmdg7zdrbaczlivmdfdy09xldg95wl4iijl15xgjcfgy0j"))))))
|
||||
|
||||
(define-public rust-cmac-0.7
|
||||
(package
|
||||
(name "rust-cmac")
|
||||
(version "0.7.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cmac" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1an1vcala24grlyhvk71ikxk2kmgcbal9kgrzzpjcl9z7i74ahw5"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.4)
|
||||
("rust-dbl" ,rust-dbl-0.3)
|
||||
("rust-digest" ,rust-digest-0.10))
|
||||
#:cargo-development-inputs
|
||||
(("rust-aes" ,rust-aes-0.8)
|
||||
("rust-des" ,rust-des-0.8)
|
||||
("rust-digest" ,rust-digest-0.10)
|
||||
("rust-hex-literal" ,rust-hex-literal-0.3)
|
||||
("rust-kuznyechik" ,rust-kuznyechik-0.8)
|
||||
("rust-magma" ,rust-magma-0.8))))
|
||||
(home-page "https://github.com/RustCrypto/MACs")
|
||||
(synopsis "Generic implementation of Cipher-based Message Authentication Code")
|
||||
(description "This package provides a pure Rust implementation of the
|
||||
Cipher-based Message Authentication Code.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-crypto-secretbox-0.1
|
||||
(package
|
||||
(name "rust-crypto-secretbox")
|
||||
|
|
|
@ -11774,36 +11774,6 @@ (define-public rust-clru-0.6
|
|||
weighted semantic.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-cmac-0.7
|
||||
(package
|
||||
(name "rust-cmac")
|
||||
(version "0.7.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cmac" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1an1vcala24grlyhvk71ikxk2kmgcbal9kgrzzpjcl9z7i74ahw5"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.4)
|
||||
("rust-dbl" ,rust-dbl-0.3)
|
||||
("rust-digest" ,rust-digest-0.10))
|
||||
#:cargo-development-inputs
|
||||
(("rust-aes" ,rust-aes-0.8)
|
||||
("rust-des" ,rust-des-0.8)
|
||||
("rust-digest" ,rust-digest-0.10)
|
||||
("rust-hex-literal" ,rust-hex-literal-0.3)
|
||||
("rust-kuznyechik" ,rust-kuznyechik-0.8)
|
||||
("rust-magma" ,rust-magma-0.8))))
|
||||
(home-page "https://github.com/RustCrypto/MACs")
|
||||
(synopsis "Generic implementation of Cipher-based Message Authentication Code")
|
||||
(description "This package provides a pure Rust implementation of the
|
||||
Cipher-based Message Authentication Code.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-cmake-0.1
|
||||
(package
|
||||
(name "rust-cmake")
|
||||
|
|
Loading…
Reference in a new issue