diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-02-23 16:51:19 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-05-07 19:29:16 +0300 |
commit | 32489acdda502be18c9d1cc68a4e9e6ee023725e (patch) | |
tree | 22d17a7d046fbec40750897919ad44293bf25eb8 /gnu | |
parent | 06a5f62a26c6e72067e228e28539f53b80b13c00 (diff) | |
download | guix-32489acdda502be18c9d1cc68a4e9e6ee023725e.tar.gz |
gnu: Add rust-half-2.
* gnu/packages/crates-io.scm (rust-half-2): New variable. (rust-half-1): Inherit from rust-half-2.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 41 |
1 files changed, 33 insertions, 8 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 947d1b3324..e124a9363c 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -25626,8 +25626,40 @@ of gzip files based on the gzip header implementation in the @code{flate2} crate ("rust-webpki" ,rust-webpki-0.21) ("rust-webpki-roots" ,rust-webpki-roots-0.17)))))) +(define-public rust-half-2 + (package + (name "rust-half") + (version "2.2.1") + (source (origin + (method url-fetch) + (uri (crate-uri "half" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1l1gdlzxgm7wc8xl5fxas20kfi1j35iyb7vfjkghbdzijcvazd02")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-bytemuck" ,rust-bytemuck-1) + ("rust-crunchy" ,rust-crunchy-0.2) + ("rust-num-traits" ,rust-num-traits-0.2) + ("rust-serde" ,rust-serde-1) + ("rust-zerocopy" ,rust-zerocopy-0.6)) + #:cargo-development-inputs + (("rust-criterion" ,rust-criterion-0.4) + ("rust-crunchy" ,rust-crunchy-0.2) + ("rust-quickcheck" ,rust-quickcheck-1) + ("rust-quickcheck-macros" ,rust-quickcheck-macros-1) + ("rust-rand" ,rust-rand-0.8)))) + (home-page "https://github.com/starkat99/half-rs") + (synopsis "Half-precision floating point f16 type") + (description + "Half-precision floating point f16 type for Rust implementing the +IEEE 754-2008 binary16 type.") + (license (list license:expat license:asl2.0)))) + (define-public rust-half-1 (package + (inherit rust-half-2) (name "rust-half") (version "1.7.1") (source @@ -25637,7 +25669,6 @@ of gzip files based on the gzip header implementation in the @code{flate2} crate (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1wzavaaaa2jwkm4i1dbglmwjfsdhn4n73wrkbdzllaynlams5b32")))) - (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-serde" ,rust-serde-1)) @@ -25646,13 +25677,7 @@ of gzip files based on the gzip header implementation in the @code{flate2} crate ("rust-quickcheck" ,rust-quickcheck-0.9) ("rust-quickcheck-macros" ,rust-quickcheck-macros-0.9) ("rust-rand" ,rust-rand-0.7) - ("rust-version-sync" ,rust-version-sync-0.8)))) - (home-page "https://github.com/starkat99/half-rs") - (synopsis "Half-precision floating point f16 type") - (description - "Half-precision floating point f16 type for Rust implementing the -IEEE 754-2008 binary16 type.") - (license (list license:expat license:asl2.0)))) + ("rust-version-sync" ,rust-version-sync-0.8)))))) (define-public rust-home-0.5 (package |