1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

gnu: Add rust-lazy-regex-2.

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

Change-Id: I39df48d2f372ebb62d2c07f0a10aac44c304ca30
This commit is contained in:
Efraim Flashner 2025-02-05 10:28:19 +02:00
parent 88a27d5b9e
commit f703d3b0de
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -37960,6 +37960,26 @@ language tags.")
(description "Lazy static regular expressions checked at compile time.")
(license license:expat)))
(define-public rust-lazy-regex-2
(package
(inherit rust-lazy-regex-3)
(name "rust-lazy-regex")
(version "2.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "lazy-regex" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1m1mhaf7d488jx3gcy4yvmywi4zphpjqrs59gm5q39lfqqiw8qzz"))))
(arguments
(list #:cargo-test-flags
'(list "--" "--skip=src/lib.rs - (line 139)")
#:cargo-inputs
(list rust-lazy-regex-proc-macros-2
rust-once-cell-1
rust-regex-1)))))
(define-public rust-lazy-regex-proc-macros-3
(package
(name "rust-lazy-regex-proc-macros")