mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-22 10:39:39 -05:00
gnu: Add rust-lexical-write-integer-0.8.
* gnu/packages/crates-io.scm (rust-lexical-write-integer-0.8): New variable.
This commit is contained in:
parent
5a6d510d3e
commit
e18404703b
1 changed files with 23 additions and 0 deletions
|
@ -25417,6 +25417,29 @@ (define-public rust-lexical-util-0.8
|
|||
(description "This package provides shared utilities for lexical crate.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-lexical-write-integer-0.8
|
||||
(package
|
||||
(name "rust-lexical-write-integer")
|
||||
(version "0.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "lexical-write-integer" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1vsn3zg2hyqnyapwmzb2aw0w5f53ad6s6n46xyazsh0f5r4mdsgc"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-lexical-util" ,rust-lexical-util-0.8)
|
||||
("rust-static-assertions" ,rust-static-assertions-1))))
|
||||
(home-page "https://github.com/Alexhuszagh/rust-lexical")
|
||||
(synopsis "Efficient formatting of integers to strings")
|
||||
(description
|
||||
"This crate provides efficient formatting of integers to strings.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-lexical-5
|
||||
(package
|
||||
(name "rust-lexical")
|
||||
|
|
Loading…
Reference in a new issue