me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ubyte-0.10.

* gnu/packages/crates-io.scm (rust-ubyte-0.10): New variable.

Change-Id: I6426e2d83843598edd66ff82f08f0d3f80ad06b5
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Wilko Meyer 2024-01-08 02:52:08 +01:00 committed by Efraim Flashner
parent 5397d4a53d
commit 0a2a7e59fb
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -80551,6 +80551,29 @@ implementation is incomplete.")
(license (list license:asl2.0
license:expat))))
(define-public rust-ubyte-0.10
(package
(name "rust-ubyte")
(version "0.10.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "ubyte" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1spj3k9sx6xvfn7am9vm1b463hsr79nyvj8asi2grqhyrvvdw87p"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-serde" ,rust-serde-1))
#:cargo-development-inputs (("rust-serde-json" ,rust-serde-json-1)
("rust-serde-test" ,rust-serde-test-1))))
(home-page "https://github.com/SergioBenitez/ubyte")
(synopsis "no_std library for byte units")
(description
"This package provides a simple, complete, const-everything, saturating,
human-friendly, no_std library for byte units.")
(license (list license:expat license:asl2.0))))
(define-public rust-ucd-parse-0.1
(package
(name "rust-ucd-parse")