summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
commitbad8e026c89b380dd972ccc00f9a3d037a5aa468 (patch)
tree273a464babd202a76b320f76ea38d4b65a130f58
parent4531ca435296313f016dd0fa55cab23c660c533b (diff)
downloadguix-techchud-bad8e026c89b380dd972ccc00f9a3d037a5aa468.tar.gz
guix-techchud-bad8e026c89b380dd972ccc00f9a3d037a5aa468.tar.bz2
guix-techchud-bad8e026c89b380dd972ccc00f9a3d037a5aa468.zip
add rust-speech-dispatcher@0.7
-rw-r--r--unlustig.scm22
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)))
+