1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add rust-transpose-0.2.

* gnu/packages/crates-io.scm (rust-transpose-0.2): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Change-Id: I00729a2c36bcf339a24e519d5c2ef9b11da6bbab
This commit is contained in:
Nicolas Graves 2024-11-06 00:15:04 +01:00 committed by Efraim Flashner
parent dc7ccb4439
commit 38ef48cc41
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -85408,6 +85408,28 @@ be used directly. See @code{rust-trackable} for more information.")
(license (list license:asl2.0
license:expat))))
(define-public rust-transpose-0.2
(package
(name "rust-transpose")
(version "0.2.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "transpose" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0zp74v7jrjg4jr654dncdj6hqvacicsywyhc62jawgxwhvnimmhs"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-num-integer" ,rust-num-integer-0.1)
("rust-strength-reduce" ,rust-strength-reduce-0.2))
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3))))
(home-page "https://github.com/ejmahler/transpose")
(synopsis "Utility for transposing multi-dimensional data")
(description
"This package provides utilities for transposing multi-dimensional data.")
(license (list license:expat license:asl2.0))))
(define-public rust-trash-5
(package
(name "rust-trash")