me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-fancy-regex-0.13.

* gnu/packages/crates-io.scm (rust-fancy-regex-0.13): New variable.
(rust-fancy-regex-0.11): Inherit from rust-fancy-regex-0.13.

Change-Id: I6220e01dd805e9960dff08b3e40be2a6d5c22432
master
Efraim Flashner 2024-03-14 13:18:09 +02:00
parent 81c61cfdae
commit 7048f4033e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 6 deletions

View File

@ -23009,24 +23009,26 @@ provides implementations for @code{HashMap} and @code{HashSet}.")
(description "Fallible streaming iteration")
(license (list license:expat license:asl2.0))))
(define-public rust-fancy-regex-0.11
(define-public rust-fancy-regex-0.13
(package
(name "rust-fancy-regex")
(version "0.11.0")
(version "0.13.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "fancy-regex" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "18j0mmzfycibhxhhhfja00dxd1vf8x5c28lbry224574h037qpxr"))))
(base32 "1wjbqjsdj8fkq6z2i9llq25iaqzd9f208vxnwg8mdbr2ba1lc7jk"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-bit-set" ,rust-bit-set-0.5)
("rust-regex" ,rust-regex-1))
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
("rust-regex-automata" ,rust-regex-automata-0.4)
("rust-regex-syntax" ,rust-regex-syntax-0.8))
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.5)
("rust-matches" ,rust-matches-0.1)
("rust-quickcheck" ,rust-quickcheck-1))))
("rust-quickcheck" ,rust-quickcheck-1)
("rust-regex" ,rust-regex-1))))
(home-page "https://github.com/fancy-regex/fancy-regex")
(synopsis "Implementation of regexes with a rich set of features")
(description
@ -23037,6 +23039,25 @@ implement features such as look-around and backtracking, which are not
supported in purely NFA-based implementations.")
(license license:expat)))
(define-public rust-fancy-regex-0.11
(package
(inherit rust-fancy-regex-0.13)
(name "rust-fancy-regex")
(version "0.11.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "fancy-regex" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "18j0mmzfycibhxhhhfja00dxd1vf8x5c28lbry224574h037qpxr"))))
(arguments
`(#:cargo-inputs (("rust-bit-set" ,rust-bit-set-0.5)
("rust-regex" ,rust-regex-1))
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
("rust-matches" ,rust-matches-0.1)
("rust-quickcheck" ,rust-quickcheck-1))))))
(define-public rust-fancy-regex-0.7
(package
(inherit rust-fancy-regex-0.11)