eresi: disable parallel installs

Without the change parallel installs fail as:

    install flags: -j2
    ...
    ln: failed to create symbolic link '...-eresi-0.83-a3-phoenix//bin/elfsh': No such file or directory
    make: *** [Makefile:108: install64] Error 1
This commit is contained in:
Sergei Trofimovich 2023-03-03 22:24:41 +00:00
parent 7b8d86277d
commit 51b39d7b8b

View file

@ -60,6 +60,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ which ];
buildInputs = [ openssl readline ];
enableParallelBuilding = true;
# ln: failed to create symbolic link '...-eresi-0.83-a3-phoenix//bin/elfsh': No such file or directory
# make: *** [Makefile:108: install64] Error 1
enableParallelInstalling = false;
installTargets = lib.singleton "install"
++ lib.optional stdenv.is64bit "install64";