mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: Add rust-regex-cache-0.2.
* gnu/packages/crates-io.scm (rust-regex-cache-0.2): New variable. Change-Id: Iec00c1e3cfa9547165dbc2b3f927f6ec3d7385e3
This commit is contained in:
parent
e3b1c82b52
commit
58dc3bac8d
1 changed files with 22 additions and 0 deletions
|
@ -62116,6 +62116,28 @@ (define-public rust-regex-automata-0.1
|
|||
("rust-serde-derive" ,rust-serde-derive-1)
|
||||
("rust-toml" ,rust-toml-0.5)))))) ; 0.4
|
||||
|
||||
(define-public rust-regex-cache-0.2
|
||||
(package
|
||||
(name "rust-regex-cache")
|
||||
(version "0.2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "regex-cache" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "14w7h1rl68fzzvavig18hf184macxcypqsrv6m7vkf23jzb64yrg"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-lru-cache" ,rust-lru-cache-0.1)
|
||||
("rust-oncemutex" ,rust-oncemutex-0.1)
|
||||
("rust-regex" ,rust-regex-1)
|
||||
("rust-regex-syntax" ,rust-regex-syntax-0.6))))
|
||||
(home-page "https://github.com/1aim/rust-regex-cache")
|
||||
(synopsis "Lazy and cached regular expressions")
|
||||
(description "This package provides lazy and cached regular expressions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-regex-cursor-0.1
|
||||
(package
|
||||
(name "rust-regex-cursor")
|
||||
|
|
Loading…
Reference in a new issue