Hello.
I've installed Ubuntu 10.13, xmonad, libghc-xmonad-contrib-dev (via package manager)
When I add "import Xmonad.Util.Run" to config file I've got error:
Could not find module `Xmonad.Util.Run'
Perhaps you meant
XMonad.Util.Run (from xmonad-contrib-0.11.2)
XMonad.Util.Dzen (from xmonad-contrib-0.11.2)
XMonad.Util.Font (from xmonad-contrib-0.11.2)
Use -v to see a list of the files searched for.
Please check the file for errors.
My example config:
import XMonad
import Xmonad.Util.Run
main = xmonad defaultConfig
I get same error if add other import, for example Xmonad.Hooks.ManageDocks.
I've tried to install xmonad via cabal (local and global modes), but also got this error.
How to fix it?