gnu: Add rust-meval-0.2.

* gnu/packages/crates-io.scm (rust-meval-0.2): New variable.
This commit is contained in:
Nicolas Goaziou 2021-02-10 16:20:49 +01:00
parent 07cdb05e99
commit 9f2426213a
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -21852,6 +21852,30 @@ (define-public rust-metal-0.14
(("rust-sema" ,rust-sema-0.1)
("rust-winit" ,rust-winit-0.19)))))) ; 0.17?
(define-public rust-meval-0.2
(package
(name "rust-meval")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "meval" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1ncj0fv9q3b4his7g947fmgkskpfly6dsniw0g6mg38wcnjrd57p"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-fnv" ,rust-fnv-1)
("rust-nom" ,rust-nom-1)
("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/rekka/meval-rs")
(synopsis "Simple math expression parser and evaluator")
(description
"This package provides a simple math expression parser and evaluator.")
(license (list license:unlicense license:expat))))
(define-public rust-mimalloc-0.1
(package
(name "rust-mimalloc")