mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: Add rust-des-0.7.
* gnu/packages/crates-io.scm (rust-des-0.7): New variable. (rust-des-0.6): Inherit from above. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
fcbad37799
commit
8fc84a0b51
1 changed files with 29 additions and 7 deletions
|
@ -15453,8 +15453,36 @@ (define-public rust-derive-new-0.5
|
||||||
structs and enums.")
|
structs and enums.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-des-0.7
|
||||||
|
(package
|
||||||
|
(name "rust-des")
|
||||||
|
(version "0.7.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "des" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0pbsfkkwfqnd4nsv3ik4z09h248f57y7bj2j1l134i2mzd4xshdc"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build?
|
||||||
|
#t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-byteorder" ,rust-byteorder-1)
|
||||||
|
("rust-cipher" ,rust-cipher-0.3)
|
||||||
|
("rust-opaque-debug" ,rust-opaque-debug-0.3))))
|
||||||
|
(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-des-0.6
|
(define-public rust-des-0.6
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-des-0.7)
|
||||||
(name "rust-des")
|
(name "rust-des")
|
||||||
(version "0.6.0")
|
(version "0.6.0")
|
||||||
(source
|
(source
|
||||||
|
@ -15465,19 +15493,13 @@ (define-public rust-des-0.6
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1bigk1x1kxvnfjn1alr8cc383z1flmj8q7g2pjl2zal8i1s7qkmj"))))
|
(base32 "1bigk1x1kxvnfjn1alr8cc383z1flmj8q7g2pjl2zal8i1s7qkmj"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-byteorder" ,rust-byteorder-1)
|
(("rust-byteorder" ,rust-byteorder-1)
|
||||||
("rust-cipher" ,rust-cipher-0.2)
|
("rust-cipher" ,rust-cipher-0.2)
|
||||||
("rust-opaque-debug" ,rust-opaque-debug-0.3))
|
("rust-opaque-debug" ,rust-opaque-debug-0.3))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-cipher" ,rust-cipher-0.2))))
|
(("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
|
(define-public rust-deunicode-0.4
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue