Skip to content

Commit

Permalink
solanum: disable install parallelism
Browse files Browse the repository at this point in the history
Without the change parallel installs fail as:

    ...-binutils-2.40/bin/ld: cannot find ./.libs/libircd.so: No such file or directory
    collect2: error: ld returned 1 exit status
    make[4]: *** [Makefile:634: solanum] Error 1
  • Loading branch information
trofi committed Mar 9, 2023
1 parent 41ddcc3 commit 91e20f1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/servers/irc/solanum/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ stdenv.mkDerivation rec {
doCheck = !stdenv.isDarwin;

enableParallelBuilding = true;
# Missing install depends:
# ...-binutils-2.40/bin/ld: cannot find ./.libs/libircd.so: No such file or directory
# collect2: error: ld returned 1 exit status
# make[4]: *** [Makefile:634: solanum] Error 1
enableParallelInstalling = false;

meta = with lib; {
description = "An IRCd for unified networks";
Expand Down

0 comments on commit 91e20f1

Please sign in to comment.