mbakke pushed a commit to branch master
in repository guix.
commit 20375df33932209fec381b4afc10f1cbd78e52b8
Author: Marius Bakke <[email protected]>
AuthorDate: Tue Jan 11 17:35:33 2022 +0100
gnu: speech-dispatcher: Simplify inputs.
* gnu/packages/speech.scm (speech-dispatcher)[native-inputs, inputs]: Remove
labels.
---
gnu/packages/speech.scm | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/speech.scm b/gnu/packages/speech.scm
index e0927ca97c..5323b22865 100644
--- a/gnu/packages/speech.scm
+++ b/gnu/packages/speech.scm
@@ -252,17 +252,15 @@ efficiency through the use of a compact vector
representation of n-grams.")
"--with-voxin=no" "--with-ibmtts=no"
"--with-kali=no" "--with-baratinoo=no")))
(native-inputs
- `(("gettext" ,gettext-minimal)
- ("pkg-config" ,pkg-config)
- ("texinfo" ,texinfo)))
+ (list gettext-minimal pkg-config texinfo))
(inputs
- `(("dotconf" ,dotconf)
- ("espeak" ,espeak-ng)
- ("glib" ,glib)
- ("libltdl" ,libltdl)
- ("libsndfile" ,libsndfile)
- ("pulseaudio" ,pulseaudio)
- ("python" ,python)))
+ (list dotconf
+ espeak-ng
+ glib
+ libltdl
+ libsndfile
+ pulseaudio
+ python))
(synopsis "Common interface to speech synthesizers")
(description "The Speech Dispatcher project provides a high-level
device independent layer for access to speech synthesis through a simple,