gnu: Add rust-magma-0.8.
* gnu/packages/crates-io.scm (rust-magma-0.8): New variable.
This commit is contained in:
parent
943fd642f1
commit
b524dec349
1 changed files with 22 additions and 0 deletions
|
@ -33005,6 +33005,28 @@ library")
|
|||
"This package provides test harness for macro expansion in Rust.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-magma-0.8
|
||||
(package
|
||||
(name "rust-magma")
|
||||
(version "0.8.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "magma" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1w321p30599kc85bb35ps32ykqc9gzpi5b99dsw793nxrypnj9xb"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.4))
|
||||
#:cargo-development-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.4)
|
||||
("rust-hex-literal" ,rust-hex-literal-0.3))))
|
||||
(home-page "https://github.com/RustCrypto/block-ciphers")
|
||||
(synopsis "Magma (GOST R 34.12-2015) block cipher")
|
||||
(description "Magma (GOST R 34.12-2015) block cipher")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-magic-crypt-3
|
||||
(package
|
||||
(name "rust-magic-crypt")
|
||||
|
|
Reference in a new issue