prismlauncher: add flite for TTS support

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-06-19 22:23:29 +02:00 committed by Jörg Thalheim
parent 0991f1b7d7
commit 65db78515a

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