From d60fe7154065001b78ff4ec952d81e3f399075c3 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Jun 2020 21:17:43 +0200 Subject: [PATCH] haskell-postgresql-pure: disable test suite to fix the build The tests need a running PostgreSQL database. --- pkgs/development/haskell-modules/configuration-nix.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index fa0a8e441e9..9f1bdb14793 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -764,7 +764,8 @@ self: super: builtins.intersectAttrs super { # The test suites fail because there's no PostgreSQL database running in our # build sandbox. - postgresql-libpq-notify = dontCheck super.postgresql-libpq-notify; hasql-queue = dontCheck super.hasql-queue; + postgresql-libpq-notify = dontCheck super.postgresql-libpq-notify; + postgresql-pure = dontCheck super.postgresql-pure; }