me
/
guix
Archived
1
0
Fork 0

gnu: rust-pcre2-0.2: Update to 0.2.6.

* gnu/packages/crates-io.scm (rust-pcre2-0.2): Update to 0.2.6.
[native-inputs]: Move pcre2 ...
[inputs]: ... to here.

Change-Id: Iac385ad91bc73dae03b8ea462f0db900fcf0e229
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Jaeme Sifat 2023-12-10 18:06:54 -05:00 committed by Efraim Flashner
parent 24e477d023
commit 8c6d5092ff
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 8 additions and 12 deletions

View File

@ -54009,25 +54009,21 @@ library.")
(define-public rust-pcre2-0.2
(package
(name "rust-pcre2")
(version "0.2.3")
(version "0.2.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "pcre2" version))
(file-name
(string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1c8sn70h72llf26sya9v26zmaamq350q57nwv6fl6fwhd4phzcw5"))))
(base32 "19w80j4f87hzdxbh5iilhbmx0vv02aybxr1ximbd7hszxal577ac"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-libc" ,rust-libc-0.2)
("rust-log" ,rust-log-0.4)
("rust-pcre2-sys" ,rust-pcre2-sys-0.2)
("rust-thread-local" ,rust-thread-local-1))))
(native-inputs
(list pcre2 pkg-config))
`(#:cargo-inputs (("rust-libc" ,rust-libc-0.2)
("rust-log" ,rust-log-0.4)
("rust-pcre2-sys" ,rust-pcre2-sys-0.2))))
(native-inputs (list pkg-config))
(inputs (list pcre2))
(home-page "https://github.com/BurntSushi/rust-pcre2")
(synopsis "High level wrapper library for PCRE2")
(description