mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 07:58:01 -05:00
gnu: Add rust-toml-datetime.
* gnu/packages/crates-io.scm (rust-toml-datetime-0.5): New variable.
This commit is contained in:
parent
08c6a8f953
commit
2278caa480
1 changed files with 21 additions and 0 deletions
|
@ -62272,6 +62272,27 @@ (define-public rust-toml-0.2
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-toml-datetime-0.5
|
||||||
|
(package
|
||||||
|
(name "rust-toml-datetime")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "toml_datetime" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1zcjvygkix0hm7nv7i6ag4fd0l1pglga1wyq2l8zgy0fgpjm32w0"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-serde" ,rust-serde-1))))
|
||||||
|
(home-page "https://github.com/toml-rs/toml")
|
||||||
|
(synopsis "TOML-compatible datetime type")
|
||||||
|
(description
|
||||||
|
"This package provides a TOML-compatible datetime type for Rust.")
|
||||||
|
;; The user can choose either license.
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-toml-edit-0.14
|
(define-public rust-toml-edit-0.14
|
||||||
(package
|
(package
|
||||||
(name "rust-toml-edit")
|
(name "rust-toml-edit")
|
||||||
|
|
Loading…
Reference in a new issue