me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-float-eq-1.

* gnu/packages/crates-io.scm (rust-float-eq-1): New variable.
Efraim Flashner 2023-10-01 16:22:24 +03:00
parent 01530df91b
commit a68565f4da
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -25057,6 +25057,30 @@ traits.")
(base32 (base32
"0036jb8ry4h83n319jb20b5yvyfyq8mx8dkxnyjm22nq8fl8yjhk")))))) "0036jb8ry4h83n319jb20b5yvyfyq8mx8dkxnyjm22nq8fl8yjhk"))))))
(define-public rust-float-eq-1
(package
(name "rust-float-eq")
(version "1.0.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "float-eq" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0lxqxkvdy5zh3qsksavpcazg57cbyjy9p54m16x13bfq8lqhxa18"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-float-eq-derive" ,rust-float-eq-derive-1)
("rust-num-complex" ,rust-num-complex-0.4))
#:cargo-development-inputs
(("rust-trybuild" ,rust-trybuild-1))))
(home-page "https://jtempest.github.io/float_eq-rs/")
(synopsis "Compare IEEE floating point primitives, structs and collections")
(description "Compare IEEE floating point primitives, structs and
collections for equality.")
(license (list license:expat license:asl2.0))))
(define-public rust-float-eq-derive-1 (define-public rust-float-eq-derive-1
(package (package
(name "rust-float-eq-derive") (name "rust-float-eq-derive")