summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 13:05:09 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 13:05:09 -0600
commit4aec35eef7ea318bb5091feace42b45191431743 (patch)
treed2759bec8cb3348465548180c193d5d3f5d9099f
parentad05dc52d8c5759ca5dfe92d71b02bd09d26c174 (diff)
downloadguix-msglm-4aec35eef7ea318bb5091feace42b45191431743.tar.gz
guix-msglm-4aec35eef7ea318bb5091feace42b45191431743.tar.bz2
guix-msglm-4aec35eef7ea318bb5091feace42b45191431743.zip
add rust-tolk@0.5
-rw-r--r--unlustig.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 90d826a..a710a9f 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -885,3 +885,25 @@ the OS-level clipboard.")
"This package provides Rusty interface to the speech-dispatcher speech synthesis library.")
(license license:lgpl2.1)))
+(define-public rust-tolk-0.5
+ (package
+ (name "rust-tolk")
+ (version "0.5.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "tolk" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1ih09v2jc15k6vlikz20b4sc6nzfs1d56fg7rs87irim8x632ndk"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1)
+ ("rust-tolk-sys" ,rust-tolk-sys-0.2)
+ ("rust-widestring" ,rust-widestring-0.4))))
+ (home-page "https://github.com/darbaga/tolk-rs")
+ (synopsis "bindings to tolk.dll, a library to talk to screen readers")
+ (description
+ "This package provides bindings to tolk.dll, a library to talk to screen readers.")
+ (license license:expat)))
+