Haskell Cabal regenerate documentation for all installed packages -
how can generate , install documentation locally installed cabal packages? turned on documentation flag in ~/.cabal/config means newly installed packages have documentation generated. how generate documentation installed packages?
is there way automatically cabal install --reinstall installed packages? , more importantly, idea?
if have recent-ish version of cabal-install (>= 0.10, think), can try doing
$ cabal install --reinstall --upgrade-dependencies world unfortunately, didn't work in case:
$ cabal install --dry-run --reinstall world resolving dependencies... cabal: cannot configure agda-2.2.10. requires haskell-src-exts >=1.9.6 && <1.10 dependency on haskell-src-exts >=1.9.6 && <1.10 there these packages: haskell-src-exts-1.9.6. none of them available. haskell-src-exts-1.9.6 excluded because haskell-src-exts-1.11.1 selected instead haskell-src-exts-1.9.6 excluded because hlint-1.8.12 requires haskell-src-exts ==1.11.* if bump error this, can try manually editing ~/.cabal/world file.
Comments
Post a Comment