summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorBrian Hicks <brian@brianthicks.com>2020-01-02 06:30:18 -0600
committerPeter Simons <simons@cryp.to>2020-01-10 20:56:20 +0100
commitdfa9d013e7e903579af88bdab9a790b9f1bfdb65 (patch)
treec8071ab47b20cdb6bfe4c681cf91bd9b3254aea4 /pkgs/development/haskell-modules
parent2514bddbf77b63c971b258562ead454af1ace4eb (diff)
downloadnixpkgs-dfa9d013e7e903579af88bdab9a790b9f1bfdb65.tar
nixpkgs-dfa9d013e7e903579af88bdab9a790b9f1bfdb65.tar.gz
nixpkgs-dfa9d013e7e903579af88bdab9a790b9f1bfdb65.tar.bz2
nixpkgs-dfa9d013e7e903579af88bdab9a790b9f1bfdb65.tar.lz
nixpkgs-dfa9d013e7e903579af88bdab9a790b9f1bfdb65.tar.xz
nixpkgs-dfa9d013e7e903579af88bdab9a790b9f1bfdb65.tar.zst
nixpkgs-dfa9d013e7e903579af88bdab9a790b9f1bfdb65.zip
postgresql-typed: disable test suite
the test suite requires a running PostgreSQL instance to complete
successfully, so we'll just skip that.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-hackage2nix.yaml1
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix4
2 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index a1336196f16..4c2982e0396 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -8069,7 +8069,6 @@ broken-packages:
   - postgresql-simple-queue
   - postgresql-simple-sop
   - postgresql-simple-typed
-  - postgresql-typed
   - postgresql-typed-lifted
   - postgrest
   - postgrest-ws
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 9eedb0fed85..9a293de7712 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -695,4 +695,8 @@ self: super: builtins.intersectAttrs super {
       spagoWithoutChecks = dontCheck spagoFixHpack;
     in
     spagoWithoutChecks;
+
+  # checks SQL statements at compile time, and so requires a running PostgreSQL
+  # database to run it's test suite
+  postgresql-typed = dontCheck super.postgresql-typed;
 }