about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-04-04 21:33:05 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-04-04 21:33:55 +0200
commit10147beecfbef6d1029650a854e5f53827f7deca (patch)
tree1cdd7cabab0eb564110b92cf944e30bb79ab4ac2 /pkgs/tools/misc
parent4ab58240a9c5cf977767965d978a8f6bb7127f41 (diff)
parent685d5a02a23a6fa52a82a79f3ec27d659c5a8a3f (diff)
downloadnixlib-10147beecfbef6d1029650a854e5f53827f7deca.tar
nixlib-10147beecfbef6d1029650a854e5f53827f7deca.tar.gz
nixlib-10147beecfbef6d1029650a854e5f53827f7deca.tar.bz2
nixlib-10147beecfbef6d1029650a854e5f53827f7deca.tar.lz
nixlib-10147beecfbef6d1029650a854e5f53827f7deca.tar.xz
nixlib-10147beecfbef6d1029650a854e5f53827f7deca.tar.zst
nixlib-10147beecfbef6d1029650a854e5f53827f7deca.zip
Merge branch vcunat@NixOS:p/stdenv (close #1840)
This branch contains a collection of stdenv-changing updates.
There's glibc 2.18 -> .19 bump and many non-intrusive PRs.

The grsecurity branch #1187 got removed at Eelco's request,
see https://github.com/NixOS/nixpkgs/issues/1840#issuecomment-39327023
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index e5f9eb1be2c0..b0dbb049cbf7 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -58,7 +58,9 @@ let
     # and {Open,Free}BSD.
     doCheck = stdenv ? glibc;
 
-    enableParallelBuilding = true;
+    # Saw random failures like ‘help2man: can't get '--help' info from
+    # man/sha512sum.td/sha512sum’.
+    enableParallelBuilding = false;
 
     NIX_LDFLAGS = optionalString selinuxSupport "-lsepol";