gnu: rust-xz2-0.1: Update to 0.1.7.
* gnu/packages/crates-io.scm (rust-xz2-0.1): Update to 0.1.7. [arguments]: Don't skip the tests. Add cargo-test-flags. [cargo-development-inputs]: Replace rust-quickcheck-0.7 with 1, rust-rand-0.5 with 0.8. Change-Id: I928ad524aac44c181a09e770ddf6498c2754962emaster
parent
812f4c1423
commit
1504de9a83
|
@ -80564,7 +80564,7 @@ low-level in-memory encoding/decoding. Alias of @code{xz2} crate.")
|
||||||
(define-public rust-xz2-0.1
|
(define-public rust-xz2-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-xz2")
|
(name "rust-xz2")
|
||||||
(version "0.1.6")
|
(version "0.1.7")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -80572,17 +80572,20 @@ low-level in-memory encoding/decoding. Alias of @code{xz2} crate.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0v4jb0193gx8s1kvd2ajsgh0ffmwhqhfmrrw1n1h2z7w6jgqcyf1"))))
|
"1qk7nzpblizvayyq4xzi4b0zacmmbqr6vb9fc0v1avyp17f4931q"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; Not all files included in the tarball.
|
`(#:cargo-test-flags
|
||||||
|
'("--release" "--"
|
||||||
|
;; Not all files included in the tarball.
|
||||||
|
"--skip=standard_files")
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-futures" ,rust-futures-0.1)
|
(("rust-futures" ,rust-futures-0.1)
|
||||||
("rust-lzma-sys" ,rust-lzma-sys-0.1)
|
("rust-lzma-sys" ,rust-lzma-sys-0.1)
|
||||||
("rust-tokio-io" ,rust-tokio-io-0.1))
|
("rust-tokio-io" ,rust-tokio-io-0.1))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-quickcheck" ,rust-quickcheck-0.7)
|
(("rust-quickcheck" ,rust-quickcheck-1)
|
||||||
("rust-rand" ,rust-rand-0.5)
|
("rust-rand" ,rust-rand-0.8)
|
||||||
("rust-tokio-core" ,rust-tokio-core-0.1))))
|
("rust-tokio-core" ,rust-tokio-core-0.1))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config xz))
|
(list pkg-config xz))
|
||||||
|
|
Reference in New Issue