1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add rust-capstone-sys@0.17.0.

* gnu/packages/crates-io.scm (rust-capstone-sys-0.17): New variable.

Change-Id: Ia8bb9980422c4a18a79a04d35f79f0cf3b97ed30
This commit is contained in:
Danny Milosavljevic 2025-05-31 02:17:31 +02:00
parent ee3e8e3b00
commit 4261ef7f9b
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -96368,6 +96368,30 @@ function to call assembly instructions typically not exposed in higher level
languages.")
(license license:expat)))
(define-public rust-capstone-sys-0.17
(package
(name "rust-capstone-sys")
(version "0.17.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "capstone-sys" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1809b0is1415n13ayn3wwpknzhmfs7zq8hpccdw1kr512s6wnrr2"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-bindgen" ,rust-bindgen-0.69)
("rust-cc" ,rust-cc-1)
("rust-libc" ,rust-libc-0.2)
("rust-regex" ,rust-regex-1))))
(home-page
"https://github.com/capstone-rust/capstone-rs/tree/master/capstone-sys")
(synopsis "System bindings to the capstone disassembly library")
(description
"This package provides system bindings to the capstone disassembly library.")
(license license:expat)))
(define-public rust-x86-0.33
(package
(inherit rust-x86-0.52)