mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 19:09:27 +01:00
gnu: Add rust-fancy-regex-0.11.
* gnu/packages/crates-io.scm (rust-fancy-regex-0.11): New variable. (rust-fancy-regex-0.7): Inherit from rust-fancy-regex-0.11. Change-Id: I1dabe4d2aab7869ed1df098b5901bb951fd125d0 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
3bc167f42e
commit
029ce0713e
1 changed files with 26 additions and 7 deletions
|
@ -24443,23 +24443,24 @@ provides implementations for @code{HashMap} and @code{HashSet}.")
|
||||||
(description "Fallible streaming iteration")
|
(description "Fallible streaming iteration")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-fancy-regex-0.7
|
(define-public rust-fancy-regex-0.11
|
||||||
(package
|
(package
|
||||||
(name "rust-fancy-regex")
|
(name "rust-fancy-regex")
|
||||||
(version "0.7.1")
|
(version "0.11.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "fancy-regex" version))
|
(uri (crate-uri "fancy-regex" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1krwc8mbj8zv4ahvh3lqkmfxf38cg79ya02by19fn4jil1h8aswx"))))
|
(base32 "18j0mmzfycibhxhhhfja00dxd1vf8x5c28lbry224574h037qpxr"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:cargo-inputs (("rust-bit-set" ,rust-bit-set-0.5)
|
||||||
#:cargo-inputs
|
("rust-regex" ,rust-regex-1))
|
||||||
(("rust-bit-set" ,rust-bit-set-0.5)
|
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
|
||||||
("rust-regex" ,rust-regex-1))))
|
("rust-matches" ,rust-matches-0.1)
|
||||||
|
("rust-quickcheck" ,rust-quickcheck-1))))
|
||||||
(home-page "https://github.com/fancy-regex/fancy-regex")
|
(home-page "https://github.com/fancy-regex/fancy-regex")
|
||||||
(synopsis "Implementation of regexes with a rich set of features")
|
(synopsis "Implementation of regexes with a rich set of features")
|
||||||
(description
|
(description
|
||||||
|
@ -24470,6 +24471,24 @@ implement features such as look-around and backtracking, which are not
|
||||||
supported in purely NFA-based implementations.")
|
supported in purely NFA-based implementations.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-fancy-regex-0.7
|
||||||
|
(package
|
||||||
|
(inherit rust-fancy-regex-0.11)
|
||||||
|
(name "rust-fancy-regex")
|
||||||
|
(version "0.7.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "fancy-regex" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1krwc8mbj8zv4ahvh3lqkmfxf38cg79ya02by19fn4jil1h8aswx"))))
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-bit-set" ,rust-bit-set-0.5)
|
||||||
|
("rust-regex" ,rust-regex-1))))))
|
||||||
|
|
||||||
(define-public rust-fast-chemail-0.9
|
(define-public rust-fast-chemail-0.9
|
||||||
(package
|
(package
|
||||||
(name "rust-fast-chemail")
|
(name "rust-fast-chemail")
|
||||||
|
|
Loading…
Add table
Reference in a new issue