cdparanoiaIII: disable parallel building

Manually written makefile relies on inplace re-execution to build
shared and static libraries. Then built in parallel it occasionally
causes build failures when partially overwritten file gets used by
linker.

Let's disable parallel builds.

+9
+9
pkgs/applications/audio/cdparanoia/default.nix
··· 35 35 cp ${gnu-config}/config.guess configure.guess 36 36 ''; 37 37 38 + # Build system reuses the same object file names for shared and static 39 + # library. Occasionally fails in the middle: 40 + # gcc -O2 -fsigned-char -g -O2 -c scan_devices.c 41 + # rm -f *.o core *~ *.out 42 + # gcc -O2 -fsigned-char -g -O2 -fpic -c scan_devices.c 43 + # gcc -fpic -shared -o libcdda_interface.so.0.10.2 ... scan_devices.o ... 44 + # scan_devices.o: file not recognized: file format not recognized 45 + enableParallelBuilding = false; 46 + 38 47 meta = with lib; { 39 48 homepage = "https://xiph.org/paranoia"; 40 49 description = "A tool and library for reading digital audio from CDs";