about summary refs log tree commit diff
path: root/pkgs/tools/text/gawk
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-05-25 07:38:44 +0000
committerLudovic Courtès <ludo@gnu.org>2012-05-25 07:38:44 +0000
commitc5b6f8a374fd0100e174919dca9bba3d465f91fd (patch)
treec73894bd0de6e5713bedb38f355941c22079c53b /pkgs/tools/text/gawk
parent383b76df790a3722b005934f9799d3edc9fecb8e (diff)
downloadnixlib-c5b6f8a374fd0100e174919dca9bba3d465f91fd.tar
nixlib-c5b6f8a374fd0100e174919dca9bba3d465f91fd.tar.gz
nixlib-c5b6f8a374fd0100e174919dca9bba3d465f91fd.tar.bz2
nixlib-c5b6f8a374fd0100e174919dca9bba3d465f91fd.tar.lz
nixlib-c5b6f8a374fd0100e174919dca9bba3d465f91fd.tar.xz
nixlib-c5b6f8a374fd0100e174919dca9bba3d465f91fd.tar.zst
nixlib-c5b6f8a374fd0100e174919dca9bba3d465f91fd.zip
GNU Awk: Disable tests on Cygwin.
svn path=/nixpkgs/trunk/; revision=34236
Diffstat (limited to 'pkgs/tools/text/gawk')
-rw-r--r--pkgs/tools/text/gawk/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix
index 0c7e85cce4f2..f760e832ccc2 100644
--- a/pkgs/tools/text/gawk/default.nix
+++ b/pkgs/tools/text/gawk/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "0sss7rhpvizi2a88h6giv0i7w5h07s2fxkw3s6n1hqvcnhrfgbb0";
   };
 
-  doCheck = true;
+  doCheck = !stdenv.isCygwin;      # XXX: `test-dup2' segfaults on Cygwin 6.1
 
   buildInputs = [ libsigsegv ];