mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add rust-datetime-0.4.
* gnu/packages/crates-io.scm (rust-datetime-0.4): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
7a1de45298
commit
5d0fff83dc
1 changed files with 34 additions and 0 deletions
|
@ -2319,6 +2319,40 @@ (define-public rust-data-encoding-2.1
|
|||
hexadecimal, base32, and base64.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-datetime-0.4
|
||||
(package
|
||||
(name "rust-datetime")
|
||||
(version "0.4.7")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "datetime" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1fd74bq48xg8ki5yw1mr1pa5hd3j5lbk4iqc5r0kh3l62b0vci2w"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-iso8601" ,rust-iso8601-0.1)
|
||||
("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
|
||||
("rust-libc" ,rust-libc-0.2)
|
||||
("rust-locale" ,rust-locale-0.2)
|
||||
("rust-num-traits" ,rust-num-traits-0.1)
|
||||
("rust-pad" ,rust-pad-0.1)
|
||||
("rust-redox-syscall" ,rust-redox-syscall-0.1)
|
||||
("rust-winapi" ,rust-winapi-0.2))
|
||||
#:cargo-development-inputs
|
||||
(;("rust-regex" ,rust-regex-0.1)
|
||||
("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))
|
||||
(home-page "https://github.com/rust-datetime/datetime")
|
||||
(synopsis "Library for date and time formatting and arithmetic")
|
||||
(description "This package provides a library for date and time formatting
|
||||
and arithmetic.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-defmac-0.2
|
||||
(package
|
||||
(name "rust-defmac")
|
||||
|
|
Loading…
Reference in a new issue