diff options
author | aecepoglu <aecepoglu@fastmail.fm> | 2021-02-04 14:37:43 +0300 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-04 15:48:28 +0100 |
commit | e840c7aaf13a16c603e26863e1b4a73348b1d42b (patch) | |
tree | 1e178a5d86bfa87ae9afe293c29b3ccd2734315f | |
parent | e940d982135610e2c836a107fec4010e9c874419 (diff) | |
download | guix-e840c7aaf13a16c603e26863e1b4a73348b1d42b.tar guix-e840c7aaf13a16c603e26863e1b4a73348b1d42b.tar.gz |
gnu: Add rust-jsonrpc-core-14.
* gnu/packages/crates-io.scm (rust-jsonrpc-core-14): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/crates-io.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d2461a38e6..cef57d9f44 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -17411,6 +17411,33 @@ the jni-bindgen code generator for binding to JVM APIs from Rust.") "An implementation of the GNU make jobserver for Rust.") (license (list license:expat license:asl2.0)))) +(define-public rust-jsonrpc-core-14 + (package + (name "rust-jsonrpc-core") + (version "14.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "jsonrpc-core" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0qkvgkr05sg0j25jqgw7zcw4r1agzg8gnfnrmw1rgyqz283p6x50")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-futures" ,rust-futures-0.1) + ("rust-log" ,rust-log-0.4) + ("rust-serde" ,rust-serde-1) + ("rust-serde-derive" ,rust-serde-derive-1) + ("rust-serde-json" ,rust-serde-json-1)))) + (home-page "https://github.com/paritytech/jsonrpc") + (synopsis "Transport agnostic Rust implementation of JSON-RPC 2.0") + (description + "This package provides a transport agnostic Rust implementation of +JSON-RPC 2.0 specification.") + (license license:expat))) + (define-public rust-js-sys-0.3 (package (name "rust-js-sys") |