I am trying to configure Haskell from scratch on Ubuntu 11.04, without using the deprecated Debian repository or the Haskell platform.
I installed GHC-7.0.4from the source without any problems, and now you need to install Cabal (which seems to be already included in the GHC in / usr / local / lib / ghc -7.0.4 / Cabal-1.10.2.0) and Cabal Install.
The latter defines several dependencies ( parsecand network), each of which has several own dependencies ( mtl, textetc.).
What command to install these packages that I made from hackage to tar.gz? Unzip, then runhaskell doesn't work. I see Setup.lhs, but it is not clear what it is or how to use it.
Most of the Haskell documentation that I found suggests that you installed from a repo or Haskell-Package and do not explain it very well.
Thank!
source
share