So, an apt-get update in Ubuntu updated my GHC-version to 7.10.3 from this repository.
After this update, everything broke, so I switched to 7.10.2, from that same repository.
Almost everything is working now, except for ghc-mod, which when run, gives the following error when I try to check my project:
ghc-mod: <command line>: cannot satisfy -package-id base-4.8.2.0-9bb65294401b6ef629a229811a1f4249
(use -v for more information)
When I run cabal-install on my project, I don't get any dependency errors.
What might be causing this problem? Is there a setting within GHC-mod that needs to be changed, or a path that needs to be specified?
I can provide more information, but I just don't know where to start with this error.
My build-depends section in the .cabal file looks like this:
build-depends: base >=4.8 && <4.9
, mtl
, parsec
, pretty
, readline
Like I said, these dependencies all install fine.