mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add rust-itertools-0.11.
* gnu/packages/crates-io.scm (rust-itertools-0.11): New variable. (rust-itertools-0.10): Inherit from rust-itertools-0.11.
This commit is contained in:
parent
3e8014c00c
commit
e17b6f839e
1 changed files with 26 additions and 4 deletions
|
@ -33987,23 +33987,23 @@ (define-public rust-iso8601-0.3
|
|||
(description "Parsing ISO8601 dates using nom.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-itertools-0.10
|
||||
(define-public rust-itertools-0.11
|
||||
(package
|
||||
(name "rust-itertools")
|
||||
(version "0.10.5")
|
||||
(version "0.11.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "itertools" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0ww45h7nxx5kj6z2y6chlskxd1igvs4j507anr6dzg99x1h25zdh"))))
|
||||
(base32 "0mzyqcc59azx9g5cg6fs8k529gvh4463smmka6jvzs3cd2jp7hdi"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-either" ,rust-either-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-criterion" ,rust-criterion-0.3)
|
||||
(("rust-criterion" ,rust-criterion-0.4)
|
||||
("rust-paste" ,rust-paste-1)
|
||||
("rust-permutohedron" ,rust-permutohedron-0.2)
|
||||
("rust-quickcheck" ,rust-quickcheck-0.9)
|
||||
|
@ -34015,6 +34015,28 @@ (define-public rust-itertools-0.10
|
|||
functions, and macros.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-itertools-0.10
|
||||
(package
|
||||
(inherit rust-itertools-0.11)
|
||||
(name "rust-itertools")
|
||||
(version "0.10.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "itertools" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0ww45h7nxx5kj6z2y6chlskxd1igvs4j507anr6dzg99x1h25zdh"))))
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-either" ,rust-either-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-criterion" ,rust-criterion-0.3)
|
||||
("rust-paste" ,rust-paste-1)
|
||||
("rust-permutohedron" ,rust-permutohedron-0.2)
|
||||
("rust-quickcheck" ,rust-quickcheck-0.9)
|
||||
("rust-rand" ,rust-rand-0.7))))))
|
||||
|
||||
(define-public rust-itertools-0.9
|
||||
(package
|
||||
(inherit rust-itertools-0.10)
|
||||
|
|
Loading…
Reference in a new issue