diff options
-rw-r--r-- | unlustig.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index d818980..39b0446 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1414,3 +1414,20 @@ binding to JVM APIs from Rust.") "This package provides Cross-platform @code{OpenGL} context provider.") (license license:asl2.0))) +(define-public rust-android-glue-0.1 + (package + (name "rust-android-glue") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "android_glue" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0y07v7vvirxlxbbkajglfdx4hfrm2vbzqbpwzkh5ib3vid7j25zp")))) + (build-system cargo-build-system) + (home-page "https://github.com/tomaka/android-rs-glue") + (synopsis "Glue for the Android JNI") + (description "This package provides Glue for the Android JNI.") + (license license:expat))) + |