From 73cf1c26d836f8c453ab3a4c9d33046be8c1a189 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sun, 23 Sep 2018 21:57:17 +0200 Subject: [PATCH] haskellPackages.Frames-beam: disable tests because it requires a running PostgreSQL server --- pkgs/development/haskell-modules/configuration-nix.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index c3df7d38bfd..43ba2d000eb 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -517,4 +517,7 @@ self: super: builtins.intersectAttrs super { postPatch = '' sed -i -e 's|"z3"|"${pkgs.z3}/bin/z3"|' Data/SBV/Provers/Z3.hs''; }); + + # The test-suite requires a running PostgreSQL server. + Frames-beam = dontCheck super.Frames-beam; }