diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:04:56 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:04:56 -0600 |
commit | ad05dc52d8c5759ca5dfe92d71b02bd09d26c174 (patch) | |
tree | 273a464babd202a76b320f76ea38d4b65a130f58 | |
parent | 3843dbeaf82c29d7ec1d824aa19c547a3fbcf17a (diff) | |
download | guix-msglm-ad05dc52d8c5759ca5dfe92d71b02bd09d26c174.tar.gz guix-msglm-ad05dc52d8c5759ca5dfe92d71b02bd09d26c174.tar.bz2 guix-msglm-ad05dc52d8c5759ca5dfe92d71b02bd09d26c174.zip |
add rust-speech-dispatcher@0.7
-rw-r--r-- | unlustig.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 8475a6f..90d826a 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -863,3 +863,25 @@ the OS-level clipboard.") (description "This package provides Startup code for android binaries.") (license (list license:expat license:asl2.0)))) +(define-public rust-speech-dispatcher-0.7 + (package + (name "rust-speech-dispatcher") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "speech-dispatcher" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "04j42cpnl2cylzg9wxj4cm7h23hkf03w70ma3v25q71sq39glvh7")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1) + ("rust-speech-dispatcher-sys" ,rust-speech-dispatcher-sys-0.5)))) + (home-page "https://gitlab.com/ndarilek/speech-dispatcher-rs") + (synopsis + "Rusty interface to the speech-dispatcher speech synthesis library") + (description + "This package provides Rusty interface to the speech-dispatcher speech synthesis library.") + (license license:lgpl2.1))) + |