flite: disable parallelism

main
Sergei Trofimovich 2 years ago
parent abf79e5e71
commit 403cff50e6
  1. 4
      pkgs/development/libraries/flite/default.nix

@ -27,7 +27,9 @@ stdenv.mkDerivation rec {
"--enable-shared"
] ++ lib.optionals stdenv.isLinux [ "--with-audio=alsa" ];
enableParallelBuilding = true;
# main/Makefile creates and removes 'flite_voice_list.c' from multiple targets:
# make[1]: *** No rule to make target 'flite_voice_list.c', needed by 'all'. Stop
enableParallelBuilding = false;
meta = with lib; {
description = "A small, fast run-time speech synthesis engine";

Loading…
Cancel
Save