Skip to content

Commit

Permalink
qsynth: disable install parallelism
Browse files Browse the repository at this point in the history
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
  • Loading branch information
trofi committed Mar 9, 2023
1 parent 03be09d commit 41ddcc3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/applications/audio/qsynth/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 41ddcc3

Please sign in to comment.