about summary refs log tree commit diff
path: root/pkgs/applications/audio/qsynth
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-03-09 22:50:48 +0000
committerSergei Trofimovich <slyich@gmail.com>2023-03-09 22:50:48 +0000
commit41ddcc3898962edda8e49032d235d7edc47e31ee (patch)
treed72500d4b0b118a5eef65eeedfd9ced0f1a6ffd6 /pkgs/applications/audio/qsynth
parent03be09d5181b43ffcf0c6085d795d9fad3d5f515 (diff)
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
Diffstat (limited to 'pkgs/applications/audio/qsynth')
-rw-r--r--pkgs/applications/audio/qsynth/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/audio/qsynth/default.nix b/pkgs/applications/audio/qsynth/default.nix
index f9eaa890c57ff..a24625ca7de81 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";