From 04cc3ff7d334fe5f064071e05990949e11f8aa88 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Thu, 9 Mar 2023 22:05:53 +0000 Subject: [PATCH] asymptote: disable install parallelism Without the change parallel installs fail as: ...-coreutils-9.1/bin/install: cannot stat 'asy-keywords.el': No such file or directory make: *** [Makefile:272: install-asy] Error 1 --- pkgs/tools/graphics/asymptote/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/graphics/asymptote/default.nix b/pkgs/tools/graphics/asymptote/default.nix index ec2e5ce64c93..9950d3c56f99 100644 --- a/pkgs/tools/graphics/asymptote/default.nix +++ b/pkgs/tools/graphics/asymptote/default.nix @@ -67,6 +67,10 @@ stdenv.mkDerivation rec { ''; enableParallelBuilding = true; + # Missing install depends: + # ...-coreutils-9.1/bin/install: cannot stat 'asy-keywords.el': No such file or directory + # make: *** [Makefile:272: install-asy] Error 1 + enableParallelInstalling = false; meta = with lib; { description = "A tool for programming graphics intended to replace Metapost";