gnu: Add rust-read-process-memory-0.1.

* gnu/packages/crates-io.scm (rust-read-process-memory-0.1): New variable.

Change-Id: Iee6386d28ea10a83ac769251a7341a6d0caccdc6
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Maxim Cournoyer 2024-12-11 10:48:52 +09:00 committed by Efraim Flashner
parent 07bdee0277
commit 3d0814a1e7
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -66355,6 +66355,29 @@ (define-public rust-rdrand-0.4
@code{rdrand} and @code{rdseed} instructions")
(license license:isc)))
(define-public rust-read-process-memory-0.1
(package
(name "rust-read-process-memory")
(version "0.1.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "read-process-memory" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1c1vmw8a2ywf7v96xfwbsyrnpk3fy8cc2a0rdxw8fs0b5wxni5w4"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-libc" ,rust-libc-0.2)
("rust-log" ,rust-log-0.4)
("rust-mach" ,rust-mach-0.3)
("rust-winapi" ,rust-winapi-0.3))))
(home-page "https://github.com/rbspy/read-process-memory")
(synopsis "Read memory from another process")
(description "This package provides a crate that allows reading memory
from another process.")
(license license:expat)))
(define-public rust-readlock-0.1
(package
(name "rust-readlock")