diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | d7ac4252f02f181e4794a1a61d081ec9cfe16548 (patch) | |
tree | c98faf2ad3db723b9be151be458b143218a78ed7 | |
parent | 5a0ea89ffc9b88d9c3f19c0d9118ea05517ebb02 (diff) | |
download | guix-techchud-d7ac4252f02f181e4794a1a61d081ec9cfe16548.tar.gz guix-techchud-d7ac4252f02f181e4794a1a61d081ec9cfe16548.tar.bz2 guix-techchud-d7ac4252f02f181e4794a1a61d081ec9cfe16548.zip |
add rust-jni-glue@0.0.10
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 5a1fa8a..1fe7d84 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1127,3 +1127,26 @@ log output.") (description "This package provides Attribute wrapper for dyn-clone.") (license license:expat))) +(define-public rust-jni-glue-0.0.10 + (package + (name "rust-jni-glue") + (version "0.0.10") + (source + (origin + (method url-fetch) + (uri (crate-uri "jni-glue" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "054kc2hkdfjiihy7ssrn97s9hs35c2v32ph2h0jlv4vkazx39ddb")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-jni-sys" ,rust-jni-sys-0.3) + ("rust-lazy-static" ,rust-lazy-static-1)))) + (home-page "https://github.com/MaulingMonkey/jni-bindgen") + (synopsis + "Manually written glue code to accompany the jni-bindgen code generator for binding to JVM APIs from Rust") + (description + "This package provides Manually written glue code to accompany the jni-bindgen code generator for +binding to JVM APIs from Rust.") + (license (list license:expat license:asl2.0)))) + |