Merge pull request #142900 from trofi/sequential-espeak-ng

espeak-ng: explicitly disable parallel building

authored by

Sandro and committed by
GitHub
45e2dc61 e5fe4acb

+6
+6
pkgs/applications/audio/espeak-ng/default.nix
··· 35 35 "--with-mbrola=${if mbrolaSupport then "yes" else "no"}" 36 36 ]; 37 37 38 + # Current release lacks dependencies on local espeak-ng: 39 + # cd dictsource && ESPEAK_DATA_PATH=/build/espeak-ng LD_LIBRARY_PATH=../src: ../src/espeak-ng --compile=yue && cd .. 40 + # bash: line 1: ../src/espeak-ng: No such file or directory 41 + # Should be fixed in next release: https://github.com/espeak-ng/espeak-ng/pull/1029 42 + enableParallelBuilding = false; 43 + 38 44 postInstall = lib.optionalString stdenv.isLinux '' 39 45 patchelf --set-rpath "$(patchelf --print-rpath $out/bin/espeak-ng)" $out/bin/speak-ng 40 46 '';