I've got a project where I'm trying out the lens library. I'm trying to generate haddock docs so I can see the functions produced by the makeClassy TemplateHaskell function. cabal build works fine, but cabal haddock fails with
$ cabal haddock
Running Haddock for myproject-0.0.1...
Warning: The documentation for the following packages are not installed. No
links will be generated to these packages: rts-1.0
Preprocessing library myproject-0.0.1...
<command line>: cannot satisfy -package-id lens-3.7.1-a40583cdc124338f52ab40ebbf747e8f
(use -v for more information)
What am I missing?
cabal haddock -vgive more information? Which package id doesghc-pkg describe lensreport? – Daniel Fischer Dec 22 '12 at 20:18cabal haddock -vdoesn't give any more information, just dumps thehaddockcommand it runs. I running that directly and increasing the verbosity, but it didn't offer any additional information.ghc-pkg describe lensreportsname: lens version: 3.7.1 id: lens-3.7.1-a40583cdc124338f52ab40ebbf747e8f license: BSD3– purefn Dec 23 '12 at 0:14cannot satisfy -package-id lens-3.7.1-a40583cdc124338f52ab40ebbf747e8findicates a missing or broken dependency. But ifcabal buildworks, that doesn't seem to be the case. Nevertheless, checking for broken packages withghc-pkg checkorghc -vis never a bad idea. You can try whethercabal installworks, though I don't know why it should pass different options to haddock. – Daniel Fischer Dec 23 '12 at 0:31