xmonad.cabal: update constraints on 'base'

- Our code does not compile with versions prior to 4.6, because we need
   System.Environment.lookupEnv.

 - Our code does not compile with version 4.12 (GHC 8.6.x) and beyond.

Closes https://github.com/xmonad/xmonad/issues/180.
This commit is contained in:
Peter Simons
2018-08-20 08:45:11 +02:00
parent 3c2b09c213
commit 29c9819daa

View File

@@ -62,7 +62,7 @@ library
XMonad.StackSet
other-modules: Paths_xmonad
build-depends: base < 5 && >=3,
build-depends: base >= 4.6 && < 4.12,
containers,
data-default,
directory,