Archived
1
0
Fork 0

gnu: rust-pcre2-sys-0.2: Update to 0.2.7.

* gnu/packages/crates-io.scm (rust-pcre2-sys-0.2): Update to 0.2.7.
[source]: Update snippet.
[native-inputs]: Move prce2 ...
[inputs]: ... to here.

Change-Id: I07bfd73ce4a60dd2fed4a3f7bb6adbeac7e70da5
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Jaeme Sifat 2023-12-10 18:06:53 -05:00 committed by Efraim Flashner
parent fa148a4e05
commit 24e477d023
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -54037,29 +54037,25 @@ library.")
(define-public rust-pcre2-sys-0.2 (define-public rust-pcre2-sys-0.2
(package (package
(name "rust-pcre2-sys") (name "rust-pcre2-sys")
(version "0.2.5") (version "0.2.7")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "pcre2-sys" version)) (uri (crate-uri "pcre2-sys" version))
(file-name (file-name (string-append name "-" version ".tar.gz"))
(string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32 "1wpdvb5kaj8ggd3z63mhviyv5nbwkb0xz7wlh6sc1wiwy9b5b3wg"))
"08mp6yxrvadplwd0drdydzskvzapr6dri9fyy7xvhzn3krg0xhyy"))
(modules '((guix build utils)))
(snippet (snippet
'(begin (delete-file-recursively "pcre2") #t)))) #~(begin (use-modules (guix build utils))
(delete-file-recursively "upstream")))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:cargo-inputs `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2)
(("rust-libc" ,rust-libc-0.2) ("rust-pkg-config" ,rust-pkg-config-0.3)
("rust-pkg-config" ,rust-pkg-config-0.3) ("rust-cc" ,rust-cc-1))))
("rust-cc" ,rust-cc-1)))) (native-inputs (list pkg-config))
(native-inputs (inputs (list pcre2))
(list pcre2 pkg-config)) (home-page "https://github.com/BurntSushi/rust-pcre2")
(home-page
"https://github.com/BurntSushi/rust-pcre2")
(synopsis "Low level bindings to PCRE2") (synopsis "Low level bindings to PCRE2")
(description "Low level bindings to PCRE2.") (description "Low level bindings to PCRE2.")
(license (list license:expat license:unlicense)))) (license (list license:expat license:unlicense))))