ffc8ac2fad
I have checked a couple of times that building in parallel succeedes even with nix-build --cores 9999, and once that the result can build all not broken dependent projects. Closes #58797.
9 lines
230 B
Nix
9 lines
230 B
Nix
{ callPackage, Foundation, libobjc }:
|
|
|
|
callPackage ./generic.nix (rec {
|
|
inherit Foundation libobjc;
|
|
version = "5.20.1.27";
|
|
sha256 = "15rpwxw642ad1na93k5nj7d2lb24f21kncr924gxr00178a9x0jy";
|
|
enableParallelBuilding = true;
|
|
})
|