CI: Fix build with mtl-2.3.1

Technically, contrib still does not build with stack, as it forces
xmonad-0.17.0, while only HEAD builds with newer mtl versions.  However,
until our dependencies are at least revbumped, this may be the best we
can do.

Related: https://github.com/xmonad/xmonad-contrib/issues/805
This commit is contained in:
Tony Zorman 2023-03-27 08:15:37 +02:00
parent e60805bd45
commit 4929da0eac

View File

@ -39,12 +39,12 @@ module XMonad.Actions.CycleRecentWS (
import XMonad.Actions.Repeatable (repeatableSt)
import XMonad hiding (workspaces)
import XMonad.Prelude (void, when)
import XMonad.StackSet hiding (filter, modify)
import Control.Arrow ((&&&))
import Data.Function (on)
import Data.Functor (void)
import Control.Monad.State (lift, when)
import Control.Monad.State (lift)
-- $usage
-- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@ file: