mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 08:07:29 +01:00
gnu: Add rust-regex-syntax-0.8.
* gnu/packages/crates-io.scm (rust-regex-syntax-0.8): New variable. (rust-regex-syntax-0.7): Inherit from rust-regex-syntax-0.8. Change-Id: Ic037695eaa1567421bda84a96ad0a4ea893d505b
This commit is contained in:
parent
10a9f91c4f
commit
4329b34b17
1 changed files with 21 additions and 6 deletions
|
@ -59570,8 +59570,28 @@ (define-public rust-regex-automata-0.1
|
||||||
("rust-serde-derive" ,rust-serde-derive-1)
|
("rust-serde-derive" ,rust-serde-derive-1)
|
||||||
("rust-toml" ,rust-toml-0.5)))))) ; 0.4
|
("rust-toml" ,rust-toml-0.5)))))) ; 0.4
|
||||||
|
|
||||||
|
(define-public rust-regex-syntax-0.8
|
||||||
|
(package
|
||||||
|
(name "rust-regex-syntax")
|
||||||
|
(version "0.8.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "regex-syntax" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "17rd2s8xbiyf6lb4aj2nfi44zqlj98g2ays8zzj2vfs743k79360"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-arbitrary" ,rust-arbitrary-1))))
|
||||||
|
(home-page "https://github.com/rust-lang/regex/tree/master/regex-syntax")
|
||||||
|
(synopsis "Regular expression parser")
|
||||||
|
(description "This package provides a regular expression parser.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-regex-syntax-0.7
|
(define-public rust-regex-syntax-0.7
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-regex-syntax-0.8)
|
||||||
(name "rust-regex-syntax")
|
(name "rust-regex-syntax")
|
||||||
(version "0.7.4")
|
(version "0.7.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
|
@ -59581,13 +59601,8 @@ (define-public rust-regex-syntax-0.7
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1qjczlc2w92kamn9ipjdr5pjql0jnccahpi9l3r6wp0rnsjr5sp5"))))
|
"1qjczlc2w92kamn9ipjdr5pjql0jnccahpi9l3r6wp0rnsjr5sp5"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs (("rust-arbitrary" ,rust-arbitrary-1))))
|
`(#:cargo-inputs (("rust-arbitrary" ,rust-arbitrary-1))))))
|
||||||
(home-page "https://github.com/rust-lang/regex/tree/master/regex-syntax")
|
|
||||||
(synopsis "Regular expression parser")
|
|
||||||
(description "This package provides a regular expression parser.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-regex-syntax-0.6
|
(define-public rust-regex-syntax-0.6
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue