From 126c384ff612a917193c0bd9318ecc33b6075fdf Mon Sep 17 00:00:00 2001 From: Aaron Tomb Date: Wed, 18 Apr 2018 10:07:08 -0700 Subject: [PATCH] Avoid most recent version of base-compat The latest version causes build failures. Ultimately, we should be able to fix the code to work with newer base-compat versions on various GHC verions, but this gets builds to work for now. --- cryptol.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptol.cabal b/cryptol.cabal index 010b91d2..c3e0cad8 100644 --- a/cryptol.cabal +++ b/cryptol.cabal @@ -43,7 +43,7 @@ library Default-language: Haskell2010 Build-depends: base >= 4.8 && < 5, - base-compat >= 0.6, + base-compat >= 0.6 && < 0.10, bytestring >= 0.10, array >= 0.4, containers >= 0.5,