From 41ddcc3898962edda8e49032d235d7edc47e31ee Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Thu, 9 Mar 2023 22:50:48 +0000 Subject: [PATCH] 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 --- pkgs/applications/audio/qsynth/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/audio/qsynth/default.nix b/pkgs/applications/audio/qsynth/default.nix index f9eaa890c57f..a24625ca7de8 100644 --- a/pkgs/applications/audio/qsynth/default.nix +++ b/pkgs/applications/audio/qsynth/default.nix @@ -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";