mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 17:53:26 -05:00
gnu: Add rust-human-format-1.
* gnu/packages/crates-io.scm (rust-human-format-1): New variable. Change-Id: If3147d7bc002a789994edbe80b77e1ec5ae9b685
This commit is contained in:
parent
0bf398a6ee
commit
91616a5f3d
1 changed files with 21 additions and 0 deletions
|
@ -32694,6 +32694,27 @@ (define-public rust-httpdate-1
|
||||||
"This crates parses and formats HTTP datetime strings.")
|
"This crates parses and formats HTTP datetime strings.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-human-format-1
|
||||||
|
(package
|
||||||
|
(name "rust-human-format")
|
||||||
|
(version "1.0.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "human-format" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1c3w2lm41gmnd82acjsi6y50ym2sh5fdb6abghysmaaqsxhf5k46"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t)) ; Wants the galvanic framework for the tests.
|
||||||
|
(home-page "https://github.com/BobGneu/human-format-rs")
|
||||||
|
(synopsis "Rust Port of human-format from node")
|
||||||
|
(description
|
||||||
|
"Rust Port of human-format from node, formatting numbers for us, while the
|
||||||
|
machines are still at bay.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-humantime-serde-1
|
(define-public rust-humantime-serde-1
|
||||||
(package
|
(package
|
||||||
(name "rust-humantime-serde")
|
(name "rust-humantime-serde")
|
||||||
|
|
Loading…
Reference in a new issue