Skip to content

Commit

Permalink
CI: Fix build with mtl-2.3.1
Browse files Browse the repository at this point in the history
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: #805
  • Loading branch information
slotThe committed Mar 27, 2023
1 parent e60805b commit 4929da0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions XMonad/Actions/CycleRecentWS.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4929da0

Please sign in to comment.