me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-csv-1.1.

* gnu/packages/crates-io.scm (rust-csv-1.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 17:31:06 -08:00 committed by Efraim Flashner
parent cb190d93e7
commit f27e3ece3e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 30 additions and 0 deletions

View File

@ -1080,6 +1080,36 @@ It is inspired by the Linux kernel's @code{crypto_memneq}.")
"Utilities for concurrent programming.") "Utilities for concurrent programming.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-csv-1.1
(package
(name "rust-csv")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "csv" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0qxvzq030hi915dszazv6a7f0apzzi7gn193ni0g2lzkawjxck55"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-bstr" ,rust-bstr-0.2)
("rust-csv-core" ,rust-csv-core-0.1)
("rust-itoa" ,rust-itoa-0.4)
("rust-ryu" ,rust-ryu-1.0)
("rust-serde" ,rust-serde-1.0))
#:cargo-development-inputs
(("rust-serde" ,rust-serde-1.0))))
(home-page "https://github.com/BurntSushi/rust-csv")
(synopsis "Fast CSV parsing with support for serde")
(description
"Fast CSV parsing with support for serde.")
(license (list license:unlicense license:expat))))
(define-public rust-csv-core-0.1 (define-public rust-csv-core-0.1
(package (package
(name "rust-csv-core") (name "rust-csv-core")