summary refs log tree commit diff
path: root/pkgs/development/libraries/adns
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-01-17 20:19:54 +0000
committerLudovic Courtès <ludo@gnu.org>2009-01-17 20:19:54 +0000
commit8bf27945c602975b2b1dda120d6e5bb1dc76e018 (patch)
treef81747be9c992967a784fbf838da171168d82c29 /pkgs/development/libraries/adns
parent417303c201d40350b672a72a9fd2571fe2790a15 (diff)
downloadnixpkgs-8bf27945c602975b2b1dda120d6e5bb1dc76e018.tar
nixpkgs-8bf27945c602975b2b1dda120d6e5bb1dc76e018.tar.gz
nixpkgs-8bf27945c602975b2b1dda120d6e5bb1dc76e018.tar.bz2
nixpkgs-8bf27945c602975b2b1dda120d6e5bb1dc76e018.tar.lz
nixpkgs-8bf27945c602975b2b1dda120d6e5bb1dc76e018.tar.xz
nixpkgs-8bf27945c602975b2b1dda120d6e5bb1dc76e018.tar.zst
nixpkgs-8bf27945c602975b2b1dda120d6e5bb1dc76e018.zip
GNU aDNS: Disable the test suite for now.
svn path=/nixpkgs/trunk/; revision=13799
Diffstat (limited to 'pkgs/development/libraries/adns')
-rw-r--r--pkgs/development/libraries/adns/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/adns/default.nix b/pkgs/development/libraries/adns/default.nix
index d825f00528a..f433b1611bb 100644
--- a/pkgs/development/libraries/adns/default.nix
+++ b/pkgs/development/libraries/adns/default.nix
@@ -17,7 +17,10 @@ stdenv.mkDerivation
   configureFlags = if static then "--disable-dynamic" else "--enable-dynamic";
   CPPFLAGS = "-DNDEBUG";
   CFLAGS = "-O3";
-  doCheck = 1;
+
+  # FIXME: The test suite fails on NixOS in a chroot.  See
+  # http://thread.gmane.org/gmane.linux.distributions.nixos/1328 for details.
+  doCheck = false;
 
   # adns doesn't understand the automatic --disable-shared from the Cygwin stdenv.
   cygwinConfigureEnableShared = true;