diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:02:38 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:02:38 -0600 |
commit | 191921caf977b0972091ca3d6a485428f57eb212 (patch) | |
tree | befed42aa3a2985fa5593cdc8e460f5b5d06505d /unlustig.scm | |
parent | 3cebf4ff2b2416def258a5d05c624467a8257427 (diff) | |
download | guix-msglm-191921caf977b0972091ca3d6a485428f57eb212.tar.gz guix-msglm-191921caf977b0972091ca3d6a485428f57eb212.tar.bz2 guix-msglm-191921caf977b0972091ca3d6a485428f57eb212.zip |
add rust-malloc_buf@0.0.6
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 7f3979b..4ae6adc 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1670,3 +1670,23 @@ binding to JVM APIs from Rust.") "This package provides a generic serialization/deserialization framework.") (license (list license:expat license:asl2.0)))) +(define-public rust-malloc-buf-0.0.6 + (package + (name "rust-malloc-buf") + (version "0.0.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "malloc_buf" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1jqr77j89pwszv51fmnknzvd53i1nkmcr8rjrvcxhm4dx1zr1fv2")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/SSheldon/malloc_buf") + (synopsis "Structs for handling malloc'd memory passed to Rust") + (description + "This package provides Structs for handling malloc'd memory passed to Rust.") + (license license:expat))) + |