me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cipher-0.3.

* gnu/packages/crates-io.scm (rust-cipher-0.3): New variable.
(rust-cipher-0.2): Inherit from rust-cipher-0.3.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Domagoj Stolfa 2021-07-11 15:55:38 +01:00 committed by Efraim Flashner
parent c5c83bd712
commit 7ff1f3dbf0
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 19 additions and 6 deletions

View File

@ -7842,10 +7842,10 @@ coding.")
(description "This package provides Rust bindings for libclang.")
(license license:asl2.0)))
(define-public rust-cipher-0.2
(define-public rust-cipher-0.3
(package
(name "rust-cipher")
(version "0.2.5")
(version "0.3.0")
(source
(origin
(method url-fetch)
@ -7853,11 +7853,10 @@ coding.")
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "00b8imbmdg7zdrbaczlivmdfdy09xldg95wl4iijl15xgjcfgy0j"))))
(base32 "1dyzsv0c84rgz98d5glnhsz4320wl24x3bq511vnyf0mxir21rby"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
`(#:cargo-inputs
(("rust-blobby" ,rust-blobby-0.3)
("rust-generic-array" ,rust-generic-array-0.14))))
(home-page "https://docs.rs/cipher/")
@ -7868,6 +7867,20 @@ RustCrypto/stream-ciphers for algorithm implementations which use these
traits.")
(license (list license:expat license:asl2.0))))
(define-public rust-cipher-0.2
(package
(inherit rust-cipher-0.3)
(name "rust-cipher")
(version "0.2.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "cipher" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "00b8imbmdg7zdrbaczlivmdfdy09xldg95wl4iijl15xgjcfgy0j"))))))
(define-public rust-clang-sys-0.29
(package
(inherit rust-clang-sys-1)