lib, ui: GHC 8 compatibility

This commit is contained in:
Simon Michael 2016-04-28 12:51:38 -07:00
parent a82239f307
commit 50aeb90596
3 changed files with 5 additions and 3 deletions

View File

@ -81,7 +81,7 @@ dependencies:
- regex-tdfa
- safe >= 0.2
- split >= 0.1 && < 0.3
- transformers >= 0.2 && < 0.5
- transformers >= 0.2 && < 0.6
- uglymemo
- utf8-string >= 0.3.5 && < 1.1
- HUnit

View File

@ -84,7 +84,7 @@ library
, regex-tdfa
, safe >= 0.2
, split >= 0.1 && < 0.3
, transformers >= 0.2 && < 0.5
, transformers >= 0.2 && < 0.6
, uglymemo
, utf8-string >= 0.3.5 && < 1.1
, HUnit
@ -164,7 +164,7 @@ test-suite tests
, regex-tdfa
, safe >= 0.2
, split >= 0.1 && < 0.3
, transformers >= 0.2 && < 0.5
, transformers >= 0.2 && < 0.6
, uglymemo
, utf8-string >= 0.3.5 && < 1.1
, HUnit

View File

@ -4,6 +4,8 @@ import Data.Time.Calendar (Day)
import qualified Graphics.Vty as V
import Brick
import Brick.Widgets.List (List)
import Text.Show.Functions ()
-- import the Show instance for functions. Warning, this also re-exports it
import Hledger
import Hledger.UI.UIOptions