gnu: rust-criterion-plot: Add 0.5.0.
* gnu/packages/crates-io.scm (rust-criterion-plot-0.5): New variable. (rust-criterion-plot-0.4): Inherit from it.
This commit is contained in:
parent
ec2b5f9133
commit
a90ed005a3
1 changed files with 28 additions and 6 deletions
|
@ -13590,8 +13590,35 @@ Rust.")
|
||||||
criterion.")
|
criterion.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-criterion-plot-0.5
|
||||||
|
(package
|
||||||
|
(name "rust-criterion-plot")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "criterion-plot" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1c866xkjqqhzg4cjvg01f8w6xc1j3j7s58rdksl52skq89iq4l3b"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-itertool-num" ,rust-itertools-num-0.1)
|
||||||
|
("rust-num-complex" ,rust-num-complex-0.4)
|
||||||
|
("rust-rand" ,rust-rand-0.8))
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-cast" ,rust-cast-0.3)
|
||||||
|
("rust-itertools" ,rust-itertools-0.10))))
|
||||||
|
(home-page "https://github.com/bheisler/criterion.rs")
|
||||||
|
(synopsis "Criterion's plotting library")
|
||||||
|
(description "This package provides criterion's plotting library.")
|
||||||
|
;; The user can choose either license.
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-criterion-plot-0.4
|
(define-public rust-criterion-plot-0.4
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-criterion-plot-0.5)
|
||||||
(name "rust-criterion-plot")
|
(name "rust-criterion-plot")
|
||||||
(version "0.4.4")
|
(version "0.4.4")
|
||||||
(source
|
(source
|
||||||
|
@ -13602,7 +13629,6 @@ criterion.")
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0mys2zkizh5az6ax77m5aqifk0vz35rn0a6wykvmjx9gkzg9c2fh"))))
|
(base32 "0mys2zkizh5az6ax77m5aqifk0vz35rn0a6wykvmjx9gkzg9c2fh"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-cast" ,rust-cast-0.2)
|
(("rust-cast" ,rust-cast-0.2)
|
||||||
|
@ -13610,11 +13636,7 @@ criterion.")
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-itertools-num" ,rust-itertools-num-0.1)
|
(("rust-itertools-num" ,rust-itertools-num-0.1)
|
||||||
("rust-num-complex" ,rust-num-complex-0.2)
|
("rust-num-complex" ,rust-num-complex-0.2)
|
||||||
("rust-rand" ,rust-rand-0.4))))
|
("rust-rand" ,rust-rand-0.4))))))
|
||||||
(home-page "https://github.com/bheisler/criterion.rs")
|
|
||||||
(synopsis "Criterion's plotting library")
|
|
||||||
(description "This package provides criterion's plotting library.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-criterion-plot-0.3
|
(define-public rust-criterion-plot-0.3
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue