mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add rust-serde-regex-1.
* gnu/packages/crates-io.scm (rust-serde-regex-1): New variable.
This commit is contained in:
parent
37ee0acfad
commit
87e0bade7c
1 changed files with 25 additions and 0 deletions
|
@ -61751,6 +61751,31 @@ (define-public rust-serde-qs-0.7
|
|||
commonly used by Ruby on Rails via Rack.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-serde-regex-1
|
||||
(package
|
||||
(name "rust-serde-regex")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "serde-regex" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1pxsnxb8c198szghk1hvzvhva36w2q5zs70hqkmdf5d89qd6y4x8"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-regex" ,rust-regex-1)
|
||||
("rust-serde" ,rust-serde-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-serde-derive" ,rust-serde-derive-1)
|
||||
("rust-serde-json" ,rust-serde-json-1))))
|
||||
(home-page "https://github.com/tailhook/serde-regex")
|
||||
(synopsis "Serde wrapper that (de)serializes regex as strings")
|
||||
(description
|
||||
"This package provides a serde wrapper that (de)serializes regex as strings.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-serde-repr-0.1
|
||||
(package
|
||||
(name "rust-serde-repr")
|
||||
|
|
Loading…
Reference in a new issue