mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add rust-itertools-0.12.
* gnu/packages/crates-io.scm (rust-itertools-0.12): New variable. (rust-itertools-0.11): Inherit from rust-itertools-0.12. Change-Id: I3e461a7c4fb200220b908c989d04d6abd52a2b92
This commit is contained in:
parent
b6764ac0b7
commit
ef2db9ee0e
1 changed files with 28 additions and 8 deletions
|
@ -39484,8 +39484,35 @@ (define-public rust-isolang-2
|
||||||
language codes.")
|
language codes.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public rust-itertools-0.12
|
||||||
|
(package
|
||||||
|
(name "rust-itertools")
|
||||||
|
(version "0.12.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "itertools" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1c07gzdlc6a1c8p8jrvvw3gs52bss3y58cs2s21d9i978l36pnr5"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-either" ,rust-either-1))
|
||||||
|
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.4)
|
||||||
|
("rust-paste" ,rust-paste-1)
|
||||||
|
("rust-permutohedron" ,rust-permutohedron-0.2)
|
||||||
|
("rust-quickcheck" ,rust-quickcheck-0.9)
|
||||||
|
("rust-rand" ,rust-rand-0.7))))
|
||||||
|
(home-page "https://github.com/rust-itertools/itertools")
|
||||||
|
(synopsis "Extra iterator adaptors, methods, free functions, and macros")
|
||||||
|
(description
|
||||||
|
"This package provides extra iterator adaptors, iterator methods, free
|
||||||
|
functions, and macros.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-itertools-0.11
|
(define-public rust-itertools-0.11
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-itertools-0.12)
|
||||||
(name "rust-itertools")
|
(name "rust-itertools")
|
||||||
(version "0.11.0")
|
(version "0.11.0")
|
||||||
(source
|
(source
|
||||||
|
@ -39495,7 +39522,6 @@ (define-public rust-itertools-0.11
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0mzyqcc59azx9g5cg6fs8k529gvh4463smmka6jvzs3cd2jp7hdi"))))
|
(base32 "0mzyqcc59azx9g5cg6fs8k529gvh4463smmka6jvzs3cd2jp7hdi"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-either" ,rust-either-1))
|
(("rust-either" ,rust-either-1))
|
||||||
|
@ -39504,13 +39530,7 @@ (define-public rust-itertools-0.11
|
||||||
("rust-paste" ,rust-paste-1)
|
("rust-paste" ,rust-paste-1)
|
||||||
("rust-permutohedron" ,rust-permutohedron-0.2)
|
("rust-permutohedron" ,rust-permutohedron-0.2)
|
||||||
("rust-quickcheck" ,rust-quickcheck-0.9)
|
("rust-quickcheck" ,rust-quickcheck-0.9)
|
||||||
("rust-rand" ,rust-rand-0.7))))
|
("rust-rand" ,rust-rand-0.7))))))
|
||||||
(home-page "https://github.com/rust-itertools/itertools")
|
|
||||||
(synopsis "Extra iterator adaptors, methods, free functions, and macros")
|
|
||||||
(description
|
|
||||||
"This package provides extra iterator adaptors, iterator methods, free
|
|
||||||
functions, and macros.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-itertools-0.10
|
(define-public rust-itertools-0.10
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue