gnu: Add rust-numtoa-0.1.

* gnu/packages/rust-cbindgen.scm (rust-numtoa-0.1): New hidden variable.
This commit is contained in:
Efraim Flashner 2019-10-23 09:48:57 +03:00
parent f38fb019ed
commit b5a9cb71b0
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -259,3 +259,23 @@ (define rust-log-0.4
"This package provides a lightweight logging facade for Rust.")
(properties '((hidden? . #t)))
(license (list license:expat license:asl2.0))))
(define rust-numtoa-0.1
(package
(name "rust-numtoa")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "numtoa" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"1vs9rhggqbql1p26x8nkha1j06wawwgb2jp5fs88b5gi7prvvy5q"))))
(build-system cargo-build-system)
(home-page "https://gitlab.com/mmstick/numtoa")
(synopsis "Convert numbers into stack-allocated byte arrays")
(description
"This package can convert numbers into stack-allocated byte arrays.")
(properties '((hidden? . #t)))
(license (list license:expat license:asl2.0))))