mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: Add rust-chrono-tz-0.6.
* gnu/packages/crates-io.scm (rust-chrono-tz-0.6): New variable. (rust-chrono-tz-0.5): Inherit from above. (rust-chrono-tz-build-0.0.2): New variable.
This commit is contained in:
parent
4e0544f661
commit
01820c21ce
1 changed files with 53 additions and 5 deletions
|
@ -8974,8 +8974,36 @@ (define-public rust-chrono-humanize-0.2
|
||||||
Python arrow.humanize.")
|
Python arrow.humanize.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-chrono-tz-0.6
|
||||||
|
(package
|
||||||
|
(name "rust-chrono-tz")
|
||||||
|
(version "0.6.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "chrono-tz" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "12qcpjqva4fpj5kdcksbfhsc8dkbdhyi2z56p8dwf9bxc0f1rh34"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-chrono" ,rust-chrono-0.4)
|
||||||
|
("rust-chrono-tz-build" ,rust-chrono-tz-build-0.0.2)
|
||||||
|
("rust-phf" ,rust-phf-0.10)
|
||||||
|
("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-uncased" ,rust-uncased-0.9))))
|
||||||
|
(home-page "https://github.com/chronotope/chrono-tz")
|
||||||
|
(synopsis "TimeZone implementations for rust-chrono from the IANA database")
|
||||||
|
(description
|
||||||
|
"Chrono-TZ is a library that provides implementors of the TimeZone trait
|
||||||
|
for @code{rust-chrono}.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-chrono-tz-0.5
|
(define-public rust-chrono-tz-0.5
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-chrono-tz-0.6)
|
||||||
(name "rust-chrono-tz")
|
(name "rust-chrono-tz")
|
||||||
(version "0.5.3")
|
(version "0.5.3")
|
||||||
(source
|
(source
|
||||||
|
@ -8985,18 +9013,38 @@ (define-public rust-chrono-tz-0.5
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "085i4940kn0fn4gkl3xi1kv3vp2frhfig1vla1i461pcbwas6m15"))))
|
(base32 "085i4940kn0fn4gkl3xi1kv3vp2frhfig1vla1i461pcbwas6m15"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-chrono" ,rust-chrono-0.4)
|
(("rust-chrono" ,rust-chrono-0.4)
|
||||||
("rust-parse-zoneinfo" ,rust-parse-zoneinfo-0.3)
|
("rust-parse-zoneinfo" ,rust-parse-zoneinfo-0.3)
|
||||||
("rust-serde" ,rust-serde-1))))
|
("rust-serde" ,rust-serde-1))))))
|
||||||
|
|
||||||
|
(define-public rust-chrono-tz-build-0.0.2
|
||||||
|
(package
|
||||||
|
(name "rust-chrono-tz-build")
|
||||||
|
(version "0.0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "chrono-tz-build" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0schy3z03psvmc6734hgkx52cdb3zvixgzhvhr0mzxmj7x4qs1fv"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-parse-zoneinfo" ,rust-parse-zoneinfo-0.3)
|
||||||
|
("rust-phf" ,rust-phf-0.10)
|
||||||
|
("rust-phf-codegen" ,rust-phf-codegen-0.10)
|
||||||
|
("rust-regex" ,rust-regex-1)
|
||||||
|
("rust-uncased" ,rust-uncased-0.9))))
|
||||||
(home-page "https://github.com/chronotope/chrono-tz")
|
(home-page "https://github.com/chronotope/chrono-tz")
|
||||||
(synopsis "TimeZone implementations for rust-chrono from the IANA database")
|
(synopsis "Internal build script for chrono-tz Rust package")
|
||||||
(description
|
(description
|
||||||
"Chrono-TZ is a library that provides implementors of the
|
"This package contains the internal build script for
|
||||||
TimeZone trait for @code{rust-chrono}.")
|
chrono-tz Rust crate.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-chunked-transfer-1
|
(define-public rust-chunked-transfer-1
|
||||||
|
|
Loading…
Reference in a new issue