From 8a34e3369e2807b076d2282b8ccffb20e75cde41 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Jun 2020 21:14:12 +0200 Subject: [PATCH] haskell-hasql-queue: disable test suite to fix the build The tests need a running PostgreSQL database. --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 1 + pkgs/development/haskell-modules/configuration-nix.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 008bd06e23e..f80787b2c77 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -5848,6 +5848,7 @@ broken-packages: - hasql-optparse-applicative - hasql-postgres - hasql-postgres-options + - hasql-queue - hasql-simple - hastache - hastache-aeson diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 46ddf4a048a..fa0a8e441e9 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -765,5 +765,6 @@ 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; }