mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add rust-human-date-parser-0.2.
* gnu/packages/crates-io.scm (rust-human-date-parser-0.2): New variable. (rust-human-date-parser-0.1): Inherit from rust-human-date-parser-0.2. Change-Id: I5de072ff9814cb6894b54f38565b586ff2c1bf70
This commit is contained in:
parent
af109a7294
commit
b462fc7efa
1 changed files with 23 additions and 4 deletions
|
@ -34059,20 +34059,20 @@ (define-public rust-hts-sys-2
|
|||
(description "This library provides Rust bindings to HTSlib.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-human-date-parser-0.1
|
||||
(define-public rust-human-date-parser-0.2
|
||||
(package
|
||||
(name "rust-human-date-parser")
|
||||
(version "0.1.2")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "human-date-parser" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "06jflxqah06cnbc5d9mmffmzrhw3ybj9aigyxag39k2pf5mgkjy5"))))
|
||||
(base32 "0qqwf20wz13ww06i1xqr9hfbg4c598f34n442q90qxzyxd6wy5hi"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; use of undeclared crate or module `concat_idents`
|
||||
`(#:tests? #f ; unresolved import `concat_idents`
|
||||
#:cargo-inputs (("rust-chrono" ,rust-chrono-0.4)
|
||||
("rust-pest" ,rust-pest-2)
|
||||
("rust-pest-derive" ,rust-pest-derive-2)
|
||||
|
@ -34084,6 +34084,25 @@ (define-public rust-human-date-parser-0.1
|
|||
usable by code.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-human-date-parser-0.1
|
||||
(package
|
||||
(inherit rust-human-date-parser-0.2)
|
||||
(name "rust-human-date-parser")
|
||||
(version "0.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "human-date-parser" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "06jflxqah06cnbc5d9mmffmzrhw3ybj9aigyxag39k2pf5mgkjy5"))))
|
||||
(arguments
|
||||
`(#:tests? #f ; use of undeclared crate or module `concat_idents`
|
||||
#:cargo-inputs (("rust-chrono" ,rust-chrono-0.4)
|
||||
("rust-pest" ,rust-pest-2)
|
||||
("rust-pest-derive" ,rust-pest-derive-2)
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-human-format-1
|
||||
(package
|
||||
(name "rust-human-format")
|
||||
|
|
Loading…
Reference in a new issue