diff --git a/default.nix b/default.nix index e2c1a5650..b2f1c284f 100644 --- a/default.nix +++ b/default.nix @@ -23,7 +23,9 @@ with pkgs; buildGoPackage rec { # Enable checks and configure check-phase to include vet: doCheck = true; preCheck = '' - getGoDirs "" | parallel -j $NIX_BUILD_CORES buildGoDir vet + for pkg in $(getGoDirs ""); do + buildGoDir vet "$pkg" + done ''; meta = with lib; {