mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-cexpr-0.3.
* gnu/package/crates-io.scm (rust-cexpr-0.3): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
cf47457707
commit
045cdf8679
1 changed files with 26 additions and 0 deletions
|
@ -899,6 +899,32 @@ (define-public rust-cc-1.0
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-cexpr-0.3
|
||||
(package
|
||||
(name "rust-cexpr")
|
||||
(version "0.3.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "cexpr" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1by64ini3f058pwad3immx5cc12wr0m0kwgaxa8apzym03mj9ym7"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-nom" ,rust-nom-4.2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-clang-sys" ,rust-clang-sys-0.28))))
|
||||
(home-page "https://github.com/jethrogb/rust-cexpr")
|
||||
(synopsis "C expression parser and evaluator")
|
||||
(description
|
||||
"This package provides a C expression parser and evaluator.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-chrono-0.4
|
||||
(package
|
||||
(name "rust-chrono")
|
||||
|
|
Loading…
Reference in a new issue