gnu: Add rust-float-ord-0.2.

* gnu/packages/crates-io.scm (rust-float-ord-0.2): New variable.
This commit is contained in:
Efraim Flashner 2020-02-09 14:32:41 +02:00
parent 3230371e06
commit e0d529bacc
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3705,6 +3705,29 @@ (define-public rust-flate2-1.0
streams.")
(license (list license:expat license:asl2.0))))
(define-public rust-float-ord-0.2
(package
(name "rust-float-ord")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "float-ord" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0kin50365sr3spnbscq43lksymybi99ai9rkqdw90m6vixhlibbv"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.3))))
(home-page "https://github.com/notriddle/rust-float-ord")
(synopsis "Total ordering for floating-point numbers")
(description
"This package provides a total ordering for floating-point numbers.")
(license (list license:asl2.0 license:expat))))
(define-public rust-fnv-1.0
(package
(name "rust-fnv")