packages feed

haskell-import-graph-1.0.1: haskell-import-graph.cabal

name:                haskell-import-graph
version:             1.0.1
synopsis:            create haskell import graph for graphviz
description:         {
create haskell import graph for graphviz
how to:
.
> cabal build
> haskell-import-graph
.
or
.
> haskell-import-graph dist/build/foo/foo-tmp/bar.hi
.
}
license:             MIT
license-file:        LICENSE
author:              ncaq
maintainer:          ncaq@ncaq.net
copyright:           Copyright (c) 2015 ncaq
category:            Development
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type:     git
  location: https://github.com/ncaq/haskell-import-graph.git

library
  hs-source-dirs:      lib
  exposed-modules:     System.ImportGraph.AppMain
                     , System.ImportGraph.GetIface
                     , System.ImportGraph.ModuleCluster

  ghc-options:         -Wall
  default-language:    Haskell2010
  default-extensions:  NamedFieldPuns
                       NoImplicitPrelude
                       OverloadedStrings
                       RecordWildCards

  build-depends:       base                   >= 4.8   && < 5
                     , classy-prelude         >= 0.12
                     , ghc                    >= 7.10
                     , graphviz               >= 2999
                     , process                >= 1.2
                     , text                   >= 1.2
                     , transformers           >= 0.4

executable haskell-import-graph
  hs-source-dirs:      exec
  main-is:             Main.hs
  ghc-options:         -Wall
  default-language:    Haskell2010
  build-depends:       base, haskell-import-graph