yav / graphmod

A utility for displaying the module dependencies of Haskell programs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

graphmod

Generate a graph of the module dependencies in the "dot" format, suitable as input to the graphviz tools.

Similar to ghc-pkg dot, but on modules instead of packages.

See the wiki for more documentation and examples.

Simple quickstart for cabal users

$ cabal install graphmod
$ ~/.cabal/bin/graphmod --help
$ ~/.cabal/bin/graphmod | tred | dot -Tpdf > modules.pdf

Simple quickstart for stack users

$ stack build --copy-compiler-tool graphmod
$ stack exec graphmod -- --help
$ stack exec graphmod | tred | dot -Tpdf > modules.pdf

About

A utility for displaying the module dependencies of Haskell programs.

License:Other


Languages

Language:Haskell 98.7%Language:Nix 1.3%