summary refs log tree commit diff
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2018-05-31 12:08:42 +0200
committerGitHub <noreply@github.com>2018-05-31 12:08:42 +0200
commit288ce0cb845c03fafa1f3c673440e9922f22131a (patch)
tree8aa09b607caec97e1a96fa6e40af51177f57e541
parent47b85dc5ab8243a653c20d4851a3e6c966877251 (diff)
parent828ddc2e20e6644b054d9c7efc0d1c3f5c221a87 (diff)
downloadnixlib-288ce0cb845c03fafa1f3c673440e9922f22131a.tar
nixlib-288ce0cb845c03fafa1f3c673440e9922f22131a.tar.gz
nixlib-288ce0cb845c03fafa1f3c673440e9922f22131a.tar.bz2
nixlib-288ce0cb845c03fafa1f3c673440e9922f22131a.tar.lz
nixlib-288ce0cb845c03fafa1f3c673440e9922f22131a.tar.xz
nixlib-288ce0cb845c03fafa1f3c673440e9922f22131a.tar.zst
nixlib-288ce0cb845c03fafa1f3c673440e9922f22131a.zip
Merge pull request #41305 from xeji/p/dbdpg
perlPackages.DBDPg: disable tests
-rw-r--r--pkgs/development/perl-modules/DBD-Pg/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/perl-modules/DBD-Pg/default.nix b/pkgs/development/perl-modules/DBD-Pg/default.nix
index 3cf6880050b4..b9d287b2bf3c 100644
--- a/pkgs/development/perl-modules/DBD-Pg/default.nix
+++ b/pkgs/development/perl-modules/DBD-Pg/default.nix
@@ -13,6 +13,9 @@ buildPerlPackage rec {
 
   makeMakerFlags = "POSTGRES_HOME=${postgresql}";
 
+  # tests freeze in a sandbox
+  doCheck = false;
+
   meta = {
     homepage = http://search.cpan.org/dist/DBD-Pg/;
     description = "DBI PostgreSQL interface";