screen: disable parallel build (#147990)
Parallel build fails for missing generated header dependencies: screen.h:48:10: fatal error: comm.h: No such file or directory 48 | #include "comm.h" | ^~~~~~~~ Upstream fixes are intermingled with added features and are not straightforward to backport. Let's disable parallelism until next release.
This commit is contained in:
parent
73bd63bf75
commit
9d3d02f9c1
1 changed files with 6 additions and 0 deletions
|
@ -39,6 +39,12 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ ncurses ] ++ lib.optional stdenv.isLinux pam
|
||||
++ lib.optional stdenv.isDarwin utmp;
|
||||
|
||||
# Build fails due to missing dependencies on autogenerated header:
|
||||
# screen.h:48:10: fatal error: comm.h: No such file or directory
|
||||
# It will be fixed in next screen-4.9.0 release. The patches are
|
||||
# invasive. Disabling parallelism for 4.8.0.
|
||||
enableParallelBuilding = false;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue