From e7072c5cab49b5c127a847ebad727f8fab8f8f12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20S=C3=BAkup?= Date: Thu, 11 Mar 2021 12:17:07 +0100 Subject: [PATCH] Fix condition for base version. Unfortunately `base <=4.15` is false for `base-4.15.0.0` so fix condition to `base < 4.16` --- brick.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brick.cabal b/brick.cabal index 1d87f04..6ba784b 100644 --- a/brick.cabal +++ b/brick.cabal @@ -114,7 +114,7 @@ library Brick.Types.Internal Brick.Widgets.Internal - build-depends: base <= 4.15, + build-depends: base < 4.16, vty >= 5.31, transformers, data-clist >= 0.1,