diff options
-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))) + |