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
This commit is contained in:
parent
49000d52e0
commit
04cc3ff7d3
1 changed files with 4 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue