diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:10:57 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:10:57 -0600 |
commit | fd3a42a9538c494fb47d05cc9a0aac421a631d9d (patch) | |
tree | 877fcdcfacf466886f226e4976a46b07649578a3 /unlustig.scm | |
parent | 3d4dd2e570a4447069c3d17acd742dc15aad4453 (diff) | |
download | guix-msglm-fd3a42a9538c494fb47d05cc9a0aac421a631d9d.tar.gz guix-msglm-fd3a42a9538c494fb47d05cc9a0aac421a631d9d.tar.bz2 guix-msglm-fd3a42a9538c494fb47d05cc9a0aac421a631d9d.zip |
add rust-android_logger@0.9
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 e3ea1bc..4856721 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1080,3 +1080,28 @@ interoperation between crates in Rust.") (description "This package provides speech-dispatcher system bindings.") (license license:lgpl2.1))) +(define-public rust-android-logger-0.9 + (package + (name "rust-android-logger") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "android_logger" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0wspwzkn3fakpyz3ka0lh6h4pa66zk9kkvic2q9n70jx30y37hif")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-android-log-sys" ,rust-android-log-sys-0.2) + ("rust-env-logger" ,rust-env-logger-0.7) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-log" ,rust-log-0.4)))) + (home-page "https://github.com/rust-mobile/android_logger-rs") + (synopsis + "logging implementation for `log` which hooks to android log output.") + (description + "This package provides a logging implementation for `log` which hooks to android +log output.") + (license (list license:expat license:asl2.0)))) + |