I'm trying to install Yesod via cabal, but it keeps failing on installing Data.Text.
I tried installing text separately with cabal install text, resulting in an error message:
Resolving dependencies...
Configuring text-0.11.1.0...
Preprocessing library text-0.11.1.0...
Building text-0.11.1.0...
Data/Text/Lazy/Builder/RealFloat.hs:21:7:
Could not find module `Data.Text.Lazy.Builder.RealFloat.Functions':
Use -v to see a list of the files searched for.
cabal: Error: some packages failed to install:
text-0.11.1.0 failed during the building phase. The exception was:
ExitFailure 1
Investigating the directory structure of the text package that was downloaded, I find that there really is no Data/Text/Lazy/Builder/RealFloat/Functions.hs. The closest thing is Data/Text/Lazy/Builder/Functions.hs (but this doesn't contain the function RealFloat.hs was trying to import, which was roundTo).
How can I fix this?
textYesod used at time of writing was not 0.11.1.0. Try downloading the package and changing theimportstatements manually, then install from the disk. I already had to do that (not with Yesod, though), and it worked. Hope it's as simple as that in your case. – Gabriel Jun 1 '11 at 23:39textindependently, and it still doesn't work, and, after poking around the troublesome modules in thetextpackage that was downloaded, I don't see any way to reasonably change the files. I tried downloading the package from Hackage, but the same problem exists. The problem seems to be with thetextpackage's code somehow; I don't see how it could work in any situation. – alecRN Jun 2 '11 at 0:02