mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: Add rust-des-0.6.
* gnu/packages/crates-io.scm (rust-des-0.6): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
ac99d1bb59
commit
cfd3fbe35e
1 changed files with 26 additions and 0 deletions
|
@ -13602,6 +13602,32 @@ (define-public rust-derive-new-0.5
|
|||
structs and enums.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-des-0.6
|
||||
(package
|
||||
(name "rust-des")
|
||||
(version "0.6.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "des" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1bigk1x1kxvnfjn1alr8cc383z1flmj8q7g2pjl2zal8i1s7qkmj"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-cipher" ,rust-cipher-0.2)
|
||||
("rust-opaque-debug" ,rust-opaque-debug-0.3))
|
||||
#:cargo-development-inputs
|
||||
(("rust-cipher" ,rust-cipher-0.2))))
|
||||
(home-page "https://github.com/RustCrypto/block-ciphers")
|
||||
(synopsis "DES and Triple DES block ciphers implementation")
|
||||
(description "This package provides DES and Triple DES (3DES, TDES) block
|
||||
ciphers implementations.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-deunicode-0.4
|
||||
(package
|
||||
(name "rust-deunicode")
|
||||
|
|
Loading…
Reference in a new issue