summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorBas van Dijk <v.dijk.bas@gmail.com>2018-09-23 21:57:17 +0200
committerBas van Dijk <v.dijk.bas@gmail.com>2018-09-23 21:57:17 +0200
commit73cf1c26d836f8c453ab3a4c9d33046be8c1a189 (patch)
tree791ba8f5e7b9ee14c69955b539b64a3a9b0e47d7 /pkgs/development/haskell-modules
parentff6122c9934712c6c7f2c7e21dba85517967dae7 (diff)
downloadnixpkgs-73cf1c26d836f8c453ab3a4c9d33046be8c1a189.tar
nixpkgs-73cf1c26d836f8c453ab3a4c9d33046be8c1a189.tar.gz
nixpkgs-73cf1c26d836f8c453ab3a4c9d33046be8c1a189.tar.bz2
nixpkgs-73cf1c26d836f8c453ab3a4c9d33046be8c1a189.tar.lz
nixpkgs-73cf1c26d836f8c453ab3a4c9d33046be8c1a189.tar.xz
nixpkgs-73cf1c26d836f8c453ab3a4c9d33046be8c1a189.tar.zst
nixpkgs-73cf1c26d836f8c453ab3a4c9d33046be8c1a189.zip
haskellPackages.Frames-beam: disable tests because it requires a running PostgreSQL server
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix3
1 files changed, 3 insertions, 0 deletions
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;
 }