diff options
author | Valentin Ignatev <valentignatev@gmail.com> | 2020-01-19 22:06:36 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-23 22:23:12 +0200 |
commit | b950135eb753d152de9c4f1af97591a25851658d (patch) | |
tree | 01f1e7386b7bf0c9672da32d872989382fe6cc45 | |
parent | d39efce8bca5e796e53c8a07e33588f61f899cf2 (diff) | |
download | patches-b950135eb753d152de9c4f1af97591a25851658d.tar patches-b950135eb753d152de9c4f1af97591a25851658d.tar.gz |
gnu: Add rust-ordered-float-1.0.
* gnu/packages/crates-io.scm (rust-ordered-float-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 730f5659b2..cb90641e65 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -9286,6 +9286,32 @@ system for OpenSSL.") "This package provides FFI bindings to OpenSSL for use in rust crates.") (license license:expat))) +(define-public rust-ordered-float-1.0 + (package + (name "rust-ordered-float") + (version "1.0.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "ordered-float" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0625x96987kspdxbikry5mb7hsf5pdc5bbanxd8wjwqlx0ar71hq")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-num-traits" ,rust-num-traits-0.2) + ("rust-serde" ,rust-serde-1.0)) + #:cargo-development-inputs + (("rust-serde-test" ,rust-serde-test-1.0)))) + (home-page "https://github.com/reem/rust-ordered-float") + (synopsis "Wrappers for total ordering on floats") + (description + "This package provides wrappers for total ordering on floats in Rust.") + (license license:expat))) + (define-public rust-ordermap-0.3 (package (name "rust-ordermap") |