about summary refs log tree commit diff
path: root/pkgs/tools/text/gnugrep/default.nix
diff options
context:
space:
mode:
authorFlorian Friesdorf <flo@chaoflow.net>2014-10-24 02:58:58 +0200
committerRok Garbas <rok@garbas.si>2015-05-28 10:53:36 +0200
commit15952587a0b84aaf1544a37d97f34fc782ee3c6d (patch)
treedfbd36d584103410650384ec90b553b8ff435e38 /pkgs/tools/text/gnugrep/default.nix
parentf33f2a7e827fb282198f2f429a57c738181c65dc (diff)
cygwin gnugrep: disable check due to multibyte-white-space
Diffstat (limited to 'pkgs/tools/text/gnugrep/default.nix')
-rw-r--r--pkgs/tools/text/gnugrep/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/text/gnugrep/default.nix b/pkgs/tools/text/gnugrep/default.nix
index e73458d0abae4..d03db13ed4203 100644
--- a/pkgs/tools/text/gnugrep/default.nix
+++ b/pkgs/tools/text/gnugrep/default.nix
@@ -14,7 +14,8 @@ stdenv.mkDerivation {
 
   buildInputs = [ pcre libiconv ];
 
-  doCheck = !stdenv.isDarwin;
+  # cygwin: FAIL: multibyte-white-space
+  doCheck = !stdenv.isDarwin && !stdenv.isCygwin;
 
   # On Mac OS X, force use of mkdir -p, since Grep's fallback
   # (./install-sh) is broken.