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