packages feed

hdocs-0.1.0.0: hdocs.cabal

-- Initial hdocs.cabal generated by cabal init.  For further documentation,
--  see http://haskell.org/cabal/users-guide/

name:                hdocs
version:             0.1.0.0
synopsis:            Haskell docs daemon
description:
  Tool and library to get docs for installed packages and source files.
  Can return result in JSON format.
  .
  @Usage:
  hdocs docs <module> - get docs for module/file
  hdocs docs <module> <name> - get docs for name in module/file
  flags
  -j          --json         output json
  -g GHC_OPT  --ghc=GHC_OPT  option to pass to GHC
  @
homepage:            https://github.com/mvoidex/hdocs
license:             BSD3
license-file:        LICENSE
author:              Alexandr `Voidex` Ruchkin
maintainer:          voidex@live.com
-- copyright:           
category:            Development
build-type:          Simple
cabal-version:       >=1.8

library
  hs-source-dirs: src
  exposed-modules:
    HDocs.Module
  build-depends:
    base == 4.6.*,
    aeson == 0.6.*,
    bytestring == 0.10.*,
    filepath == 1.3.*,
    ghc == 7.6.*,
    ghc-paths == 0.1.*,
    haddock == 2.13.*,
    containers == 0.5.*,
    transformers == 0.3.*,
    MonadCatchIO-transformers == 0.3.*,
    network == 2.4.*,
    process == 1.1.*,
    text == 0.11.*,
    mtl == 2.1.*

executable hdocs
  main-is: hdocs.hs
  hs-source-dirs: tools
  build-depends:
    base == 4.6.*,
    hdocs,
    aeson == 0.6.*,
    bytestring == 0.10.*,
    containers == 0.5.*,
    filepath == 1.3.*,
    network == 2.4.*,
    text == 0.11.*

test-suite test
  type: exitcode-stdio-1.0
  main-is: Test.hs
  hs-source-dirs: tests
  build-depends:
    base == 4.6.*,
    hdocs,
    containers == 0.5.*