mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
qsynth: disable install parallelism
Without the change parallel installs fail as: lrelease error: Parse error at src/translations/qsynth_ru.ts:1503:33: Premature end of document. make: *** [Makefile:107: src/translations/qsynth_ru.qm] Error 1
This commit is contained in:
parent
03be09d518
commit
41ddcc3898
|
@ -16,6 +16,10 @@ mkDerivation rec {
|
|||
buildInputs = [ alsa-lib fluidsynth libjack2 qtbase qttools qtx11extras ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
# Missing install depends:
|
||||
# lrelease error: Parse error at src/translations/qsynth_ru.ts:1503:33: Premature end of document.
|
||||
# make: *** [Makefile:107: src/translations/qsynth_ru.qm] Error 1
|
||||
enableParallelInstalling = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fluidsynth GUI";
|
||||
|
|
Loading…
Reference in a new issue