summaryrefslogtreecommitdiffstats
path: root/unlustig.scm
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 13:04:41 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 13:04:41 -0600
commit3843dbeaf82c29d7ec1d824aa19c547a3fbcf17a (patch)
tree2c0e9cfbe796929ca1ba841409d478e484fd339e /unlustig.scm
parent3d1e8f0560a0afdc4c4c0b3767a1a8afee598742 (diff)
downloadguix-msglm-3843dbeaf82c29d7ec1d824aa19c547a3fbcf17a.tar.gz
guix-msglm-3843dbeaf82c29d7ec1d824aa19c547a3fbcf17a.tar.bz2
guix-msglm-3843dbeaf82c29d7ec1d824aa19c547a3fbcf17a.zip
add rust-ndk-glue@0.3
Diffstat (limited to 'unlustig.scm')
-rw-r--r--unlustig.scm25
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))))
+