From 1a7300c3fb3844248230d5c02e69cea8a6e50b89 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 24 Oct 2021 21:03:33 +0100 Subject: [PATCH] m17n_lib: explicitly disable parallel building Parallel build fails due to incomplete dependencies between libraries within package. Let's fix it upstream first and meanwhile disable parallel builds. --- pkgs/tools/inputmethods/m17n-lib/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/inputmethods/m17n-lib/default.nix b/pkgs/tools/inputmethods/m17n-lib/default.nix index c80f973631162..8fb93c9c5f3ae 100644 --- a/pkgs/tools/inputmethods/m17n-lib/default.nix +++ b/pkgs/tools/inputmethods/m17n-lib/default.nix @@ -10,6 +10,11 @@ stdenv.mkDerivation rec { buildInputs = [ m17n_db ]; + # Fails parallel build due to missing intra-package depends: + # https://savannah.nongnu.org/bugs/index.php?61377 + # make[2]: *** No rule to make target '../src/libm17n-core.la', needed by 'libm17n.la'. Stop. + enableParallelBuilding = false; + meta = { homepage = "https://www.nongnu.org/m17n/"; description = "Multilingual text processing library (runtime)";