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 | 4531ca435296313f016dd0fa55cab23c660c533b (patch) | |
tree | 2c0e9cfbe796929ca1ba841409d478e484fd339e /unlustig.scm | |
parent | 4fa94712594f862554902f6ffd7bda6c054cf6cb (diff) | |
download | guix-techchud-4531ca435296313f016dd0fa55cab23c660c533b.tar.gz guix-techchud-4531ca435296313f016dd0fa55cab23c660c533b.tar.bz2 guix-techchud-4531ca435296313f016dd0fa55cab23c660c533b.zip |
add rust-ndk-glue@0.3
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index a91ac68..8475a6f 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -838,3 +838,28 @@ the OS-level clipboard.") (description "This package provides Attribute wrapper for dyn-clone.") (license license:expat))) +(define-public rust-ndk-glue-0.3 + (package + (name "rust-ndk-glue") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "ndk-glue" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "11cksaj1f2sy4dwqyssrvvhbnd86zajfvm17bj81rb2i9p1g1jn5")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-android-logger" ,rust-android-logger-0.9) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-libc" ,rust-libc-0.2) + ("rust-log" ,rust-log-0.4) + ("rust-ndk" ,rust-ndk-0.3) + ("rust-ndk-macro" ,rust-ndk-macro-0.2) + ("rust-ndk-sys" ,rust-ndk-sys-0.2)))) + (home-page "https://github.com/rust-windowing/android-ndk-rs") + (synopsis "Startup code for android binaries") + (description "This package provides Startup code for android binaries.") + (license (list license:expat license:asl2.0)))) + |