From 65db78515ac94cf5e3f7376b2ca51ab1a57ca4bb Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Mon, 19 Jun 2023 22:23:29 +0200 Subject: [PATCH] prismlauncher: add flite for TTS support Signed-off-by: Sefa Eyeoglu --- pkgs/games/prismlauncher/wrapper.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/games/prismlauncher/wrapper.nix b/pkgs/games/prismlauncher/wrapper.nix index 63604ea1ff5a..274547a59f26 100644 --- a/pkgs/games/prismlauncher/wrapper.nix +++ b/pkgs/games/prismlauncher/wrapper.nix @@ -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