[Nix-dev] [PATCH] Disable network tests on Perl libs.

David Brown nix at davidb.org
Sat May 15 17:48:47 CEST 2010


---
 pkgs/top-level/perl-packages.nix |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index e4a95bf..f5d931f 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -1879,6 +1879,8 @@ rec {
       url = mirror://cpan/authors/id/G/GB/GBARR/libnet-1.22.tar.gz;
       sha256 = "113c36qilbvd69yhkm2i2ba20ajff7cdpgvlqx96j9bb1hfmhb1p";
     };
+    # Tests perform network access.
+    doCheck = false;
   };
 
   NetSMTPSSL = buildPerlPackage {
@@ -1898,6 +1900,8 @@ rec {
     };
     buildInputs = [pkgs.openssl];
     OPENSSL_PREFIX = pkgs.openssl;
+    # Tests perform network access.
+    doCheck = false;
   };
 
   NetTwitterLite = buildPerlPackage {
-- 
1.7.1




More information about the nix-dev mailing list