diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:10:34 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:10:34 -0600 |
commit | 3d4dd2e570a4447069c3d17acd742dc15aad4453 (patch) | |
tree | fa34914a3ddbf6b2fddf58ecce532b69ffc1477e /unlustig.scm | |
parent | f80966c76995eb765916734173b69d5b8ff46c5d (diff) | |
download | guix-msglm-3d4dd2e570a4447069c3d17acd742dc15aad4453.tar.gz guix-msglm-3d4dd2e570a4447069c3d17acd742dc15aad4453.tar.bz2 guix-msglm-3d4dd2e570a4447069c3d17acd742dc15aad4453.zip |
add rust-speech-dispatcher-sys@0.5
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index d6cca2b..e3ea1bc 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1060,3 +1060,23 @@ interoperation between crates in Rust.") (description "This package provides Raw ffi bindings to Tolk.dll.") (license license:expat))) +(define-public rust-speech-dispatcher-sys-0.5 + (package + (name "rust-speech-dispatcher-sys") + (version "0.5.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "speech-dispatcher-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1d9d5d5h6fx8mgwmsi66ls1mdh582z3rf0ngxl8kv7g3wwgsjqmn")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-bindgen" ,rust-bindgen-0.55) + ("rust-gcc" ,rust-gcc-0.3)))) + (home-page "https://gitlab.com/ndarilek/speech-dispatcher-rs") + (synopsis "speech-dispatcher system bindings") + (description "This package provides speech-dispatcher system bindings.") + (license license:lgpl2.1))) + |