prismlauncher: add flite for TTS support

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2023-08-13 07:10:04 +01:00
committed by Jörg Thalheim
parent 0991f1b7d7
commit 65db78515a
+3
View File
@@ -14,9 +14,11 @@
, jdk8
, jdk17
, gamemode
, flite
, msaClientID ? null
, gamemodeSupport ? stdenv.isLinux
, textToSpeechSupport ? stdenv.isLinux
, jdks ? [ jdk17 jdk8 ]
, additionalLibs ? [ ]
}:
@@ -61,6 +63,7 @@ symlinkJoin {
stdenv.cc.cc.lib
]
++ lib.optional gamemodeSupport gamemode.lib
++ lib.optional textToSpeechSupport flite
++ additionalLibs;
in