summary refs log tree commit diff
path: root/pkgs/top-level/perl-packages.nix
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2017-11-01 14:49:08 +0100
committerRobert Helgesson <robert@rycee.net>2017-11-01 15:35:50 +0100
commit52bbba956b5d5f627518cd1889e41c9ddc928190 (patch)
treeacbfaecb3c7768ab71e618e37bc128343ab7fd5d /pkgs/top-level/perl-packages.nix
parente344aec6dbce7c24d082cdcf4f59d600025488b0 (diff)
downloadnixpkgs-52bbba956b5d5f627518cd1889e41c9ddc928190.tar
nixpkgs-52bbba956b5d5f627518cd1889e41c9ddc928190.tar.gz
nixpkgs-52bbba956b5d5f627518cd1889e41c9ddc928190.tar.bz2
nixpkgs-52bbba956b5d5f627518cd1889e41c9ddc928190.tar.lz
nixpkgs-52bbba956b5d5f627518cd1889e41c9ddc928190.tar.xz
nixpkgs-52bbba956b5d5f627518cd1889e41c9ddc928190.tar.zst
nixpkgs-52bbba956b5d5f627518cd1889e41c9ddc928190.zip
perl-Apache-Test: disable tests
The tests don't work even with the redirects, possibly due to
attempting to start Apache.

Also add basic meta section.
Diffstat (limited to 'pkgs/top-level/perl-packages.nix')
-rw-r--r--pkgs/top-level/perl-packages.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 0c24ff1f68f..68191342037 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -227,11 +227,11 @@ let self = _self // overrides; _self = with self; {
       url = mirror://cpan/authors/id/S/SH/SHAY/Apache-Test-1.40.tar.gz;
       sha256 = "0h5fsi0is6nhclsd3wwkkqx2hfgl3bpdazxycafm9sqxr3qkgx9w";
     };
-    checkPhase = ''
-      make test \
-        NIX_REDIRECTS=/etc/protocols=${pkgs.iana-etc}/etc/protocols \
-        LD_PRELOAD=${pkgs.libredirect}/lib/libredirect.so
-    '';
+    doCheck = false;
+    meta = {
+      description = "Test.pm wrapper with helpers for testing Apache";
+      license = stdenv.lib.licenses.asl20;
+    };
   };
 
   AppCLI = buildPerlPackage {