diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | 2f0b42a65f4f32a59748046761bb56828fb5af32 (patch) | |
tree | fa34914a3ddbf6b2fddf58ecce532b69ffc1477e /unlustig.scm | |
parent | 0d22212eecca160ecce0f1b392bb58e8443de6da (diff) | |
download | guix-techchud-2f0b42a65f4f32a59748046761bb56828fb5af32.tar.gz guix-techchud-2f0b42a65f4f32a59748046761bb56828fb5af32.tar.bz2 guix-techchud-2f0b42a65f4f32a59748046761bb56828fb5af32.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))) + |