Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

net-snmp: disable install parallelism

Without the change install phase fails as:

installing
install flags: -j16 ...
...
./.libs/libnetsnmpagent.so: file not recognized: file format not recognized
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:1012: libnetsnmpmibs.la] Error 1
make[1]: *** Waiting for unfinished jobs....

+3
+3
pkgs/servers/monitoring/net-snmp/default.nix
··· 49 ++ lib.optional withPerlTools perlWithPkgs; 50 51 enableParallelBuilding = true; 52 doCheck = false; # tries to use networking 53 54 postInstall = ''
··· 49 ++ lib.optional withPerlTools perlWithPkgs; 50 51 enableParallelBuilding = true; 52 + # Missing dependencies during relinking: 53 + # ./.libs/libnetsnmpagent.so: file not recognized: file format not recognized 54 + enableParallelInstalling = false; 55 doCheck = false; # tries to use networking 56 57 postInstall = ''