Merge pull request #160854 from trofi/sequential-flite

flite: disable parallelism
This commit is contained in:
Bobby Rong 2022-02-26 21:31:30 +08:00 committed by GitHub
commit a8e55551de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";