afterstep: explicitly disable parallel builds

Without the change enabling parallel builds fails as:

    ld: cannot find ../libAfterConf/libAfterConf.a: No such file or directory
This commit is contained in:
Sergei Trofimovich 2021-12-05 17:49:58 +00:00
parent 76b2fabd0a
commit 02ebf2f2bd

View file

@ -48,6 +48,12 @@ stdenv.mkDerivation rec {
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config dbus-1 --cflags)"
'';
# Parallel build fails due to missing dependencies between private libaries:
# ld: cannot find ../libAfterConf/libAfterConf.a: No such file or directory
# Let's disable parallel builds until it's fixed upstream:
# https://github.com/afterstep/afterstep/issues/8
enableParallelBuilding = false;
meta = with lib; {
description = "A NEXTStep-inspired window manager";
longDescription = ''