diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-12-04 15:33:35 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-12-27 19:52:50 +0100 |
commit | 56435b28f61af95516531ca7fde9b16d220994ee (patch) | |
tree | 3aa43f40714a3243b7972c6dc1c638c42e8ea66f | |
parent | f4b6af8b100c0c0668de463d5aead475bc7a59f5 (diff) | |
download | guix-56435b28f61af95516531ca7fde9b16d220994ee.tar.gz |
gnu: Add rust-arrow-format-0.3.
* gnu/packages/crates-io.scm (rust-arrow-format-0.3): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 9dd928995c..eb87db09e3 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -2693,6 +2693,31 @@ format.") ("rust-serde-derive" ,rust-serde-derive-1) ("rust-serde-json" ,rust-serde-json-1)))))) +(define-public rust-arrow-format-0.3 + (package + (name "rust-arrow-format") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "arrow-format" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0apg3x3yllbazh6jr85g5yammjqxpnrk6jm4n2yypyhbcvcs4zcz")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-flatbuffers" ,rust-flatbuffers-2) + ("rust-prost" ,rust-prost-0.9) + ("rust-prost-derive" ,rust-prost-derive-0.9) + ("rust-tonic" ,rust-tonic-0.6)))) + (home-page "https://crates.io/crates/arrow-format") + (synopsis "Unofficial flatbuffers and tonic code of Apache Arrow spec") + (description "This package provides an nofficial flatbuffers and tonic +code of Apache Arrow spec.") + (license license:asl2.0))) + (define-public rust-arrow2-0.5 (package (name "rust-arrow2") |