about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-02-07 11:09:13 +0100
committerPeter Simons <simons@cryp.to>2020-02-07 20:37:58 +0100
commitddb6d70051209162308e5ae4ecf5ec49f8dbdff2 (patch)
treeb83fe6e87beaf2ca4ae13eb9753b4996e6d63461 /pkgs/development
parent0358bc066f0865bb6c343a820c2d6a8d764d72f3 (diff)
downloadnixlib-ddb6d70051209162308e5ae4ecf5ec49f8dbdff2.tar
nixlib-ddb6d70051209162308e5ae4ecf5ec49f8dbdff2.tar.gz
nixlib-ddb6d70051209162308e5ae4ecf5ec49f8dbdff2.tar.bz2
nixlib-ddb6d70051209162308e5ae4ecf5ec49f8dbdff2.tar.lz
nixlib-ddb6d70051209162308e5ae4ecf5ec49f8dbdff2.tar.xz
nixlib-ddb6d70051209162308e5ae4ecf5ec49f8dbdff2.tar.zst
nixlib-ddb6d70051209162308e5ae4ecf5ec49f8dbdff2.zip
haskell-js-flot: disable test suite to break infinite evaluation cycle
Diffstat (limited to 'pkgs/development')
-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 b2c65b7f03a8..bc78409b3ec0 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -530,6 +530,9 @@ self: super: builtins.intersectAttrs super {
     '';
   });
 
+  # Break infinite recursion cycle with criterion and network-uri.
+  js-flot = dontCheck super.js-flot;
+
   # Break infinite recursion cycle between QuickCheck and splitmix.
   splitmix = dontCheck super.splitmix;