me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-lazy-regex-3.

* gnu/packages/crates-io.scm (rust-lazy-regex-3): New variable.

Change-Id: I166ddb4aea5d4a698a490734669e83e9444cd061
master
Efraim Flashner 2024-03-31 14:57:59 +03:00
parent 3e7f69f855
commit ed13824d61
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -36069,6 +36069,29 @@ generated by LALRPOP.")
"This crate provides simple methods to cast from and into byte arrays.")
(license license:boost1.0)))
(define-public rust-lazy-regex-3
(package
(name "rust-lazy-regex")
(version "3.1.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "lazy-regex" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0k3sjdcr13j119kgz1h7f1k2mnl787ig9ag436ymipxgjm2vw4jx"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-lazy-regex-proc-macros" ,rust-lazy-regex-proc-macros-3)
("rust-once-cell" ,rust-once-cell-1)
("rust-regex" ,rust-regex-1)
("rust-regex-lite" ,rust-regex-lite-0.1))))
(home-page "https://github.com/Canop/lazy-regex")
(synopsis "Lazy static regular expressions checked at compile time")
(description "Lazy static regular expressions checked at compile time.")
(license license:expat)))
(define-public rust-lazy-regex-proc-macros-3
(package
(name "rust-lazy-regex-proc-macros")