summary refs log tree commit diff
path: root/pkgs/development/libraries/libidn
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-11-20 21:51:17 +0000
committerShea Levy <shea@shealevy.com>2011-11-20 21:51:17 +0000
commit176bcf9453f960c8a79d64a9f3e40f3681574a04 (patch)
treea2dac7e983ec3369fc8f62dbf250545918d77a3f /pkgs/development/libraries/libidn
parentaea0ac2543a25faa4621f70bb0414b098d427970 (diff)
downloadnixpkgs-176bcf9453f960c8a79d64a9f3e40f3681574a04.tar
nixpkgs-176bcf9453f960c8a79d64a9f3e40f3681574a04.tar.gz
nixpkgs-176bcf9453f960c8a79d64a9f3e40f3681574a04.tar.bz2
nixpkgs-176bcf9453f960c8a79d64a9f3e40f3681574a04.tar.lz
nixpkgs-176bcf9453f960c8a79d64a9f3e40f3681574a04.tar.xz
nixpkgs-176bcf9453f960c8a79d64a9f3e40f3681574a04.tar.zst
nixpkgs-176bcf9453f960c8a79d64a9f3e40f3681574a04.zip
libidn: Don't run tests on darwin, something is wrong with the testing script
svn path=/nixpkgs/trunk/; revision=30501
Diffstat (limited to 'pkgs/development/libraries/libidn')
-rw-r--r--pkgs/development/libraries/libidn/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libidn/default.nix b/pkgs/development/libraries/libidn/default.nix
index 7510c6be899..faf3f1c3dbc 100644
--- a/pkgs/development/libraries/libidn/default.nix
+++ b/pkgs/development/libraries/libidn/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "1vc8yni7sg5iq1ijg9l558pa4v6c1v5l57zc024lgxcmhy35wxig";
   };
 
-  doCheck = true;
+  doCheck = ! stdenv.isDarwin;
 
   meta = {
     homepage = http://www.gnu.org/software/libidn/;