From ddb6d70051209162308e5ae4ecf5ec49f8dbdff2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 7 Feb 2020 11:09:13 +0100 Subject: [PATCH] haskell-js-flot: disable test suite to break infinite evaluation cycle --- 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 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;