me
/
guix
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>
master
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
1 changed files with 11 additions and 15 deletions

View File

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