From da4072a11896159ecc13d2749bd31680fc53d1c4 Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Thu, 29 Mar 2018 21:41:00 -0700 Subject: [PATCH] Blacklist base 4.6.0.1 to disable GHC 7.6.3 (#1131) --- ShellCheck.cabal | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ShellCheck.cabal b/ShellCheck.cabal index 215e226..2e2bdf7 100644 --- a/ShellCheck.cabal +++ b/ShellCheck.cabal @@ -44,7 +44,9 @@ source-repository head library hs-source-dirs: src build-depends: - base >= 4 && < 5, + -- GHC 7.6.3 (base 4.6.0.1) is buggy (#1131, #1119) in optimized mode. + -- Just disable that version entirely to fail fast. + base > 4.6.0.1 && < 5, containers >= 0.5, directory, json,