The command cabal haddock
has very useful --hyperlink-source option.
I would like to have the source hyperlinked when building documentation with cabal install
.
The ticket #517 seems to be just about it: http://hackage.haskell.org/trac/hackage/ticket/517
However, perhaps it is possible to set this flag via ~/.cabal/config file?
If not, how can I get working cabal-install build with the patch from #517 without installing Cabal-1.9, which is currently mandatory (due to one patch from December)?
For me this worked:
Edit config file
~/.cabal/config
Enable
Documentation: True
(removing "-- " at the beginning of the line is fine)Cabal Library:
Edit file
Distribution/Simple/Setup.hs
, therein finddefaultHaddockFlags = ...
I switched some of them from False to True:
having haddockHscolour the only important one (don't have to change the others if not want to).
Install updated Cabal Library:
cabal-install (cabal shell command)
To get the updated Cabal Libary working within cabal shell command, I reinstalled cabal-install also:
Since then the shell command
cabal --version
says to me:And, as wanted, any new cabal install is now installing full haddock html documentation with source codes hyperlinked as default.
Currently you cannot get the equivalent of the
--hyperlink-source
option when using the "all in one"cabal install
command. The ticket you cite is exactly about this issue.Ticket #517 is about passing haddock options via cabal, like if you have special needs like building a hoogle database or usa a different CSS
Most users will be happy with standard haddock and hyperlinked sources though, which is possible with Cabal-1.8. Ticket #517 is if you have bigger needs.
Simply calling
cabal haddock --hyperlink-source
should do the trick.If you want this as the default, you can edit
~/.cabal/config
as you mentioned.