packages feed

semdoc-0.1.3: semdoc.cabal

name:                semdoc
version:             0.1.3
synopsis:            Evaluate code snippets in Literate Haskell.
description:         Evaluate code snippets in Literate Haskell.
homepage:            https://toktok.github.io/semdoc
license:             AGPL-3
license-file:        LICENSE
author:              iphydf
maintainer:          iphydf@users.noreply.github.com
category:            Development
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/TokTok/semdoc

library
  default-language: Haskell2010
  ghc-options:
      -Wall
      -fno-warn-unused-imports
  hs-source-dirs:
      src
  exposed-modules:
      Text.Semdoc
      Text.Semdoc.EvalExpr
      Text.Semdoc.IO
      Text.Semdoc.InlineHaskell
      Text.Semdoc.Processor
      Text.Semdoc.Util
  build-depends:
      base < 5
    , Glob
    , containers
    , data-default-class
    , data-default-instances-base
    , ghc                       >= 7.6.3 && <= 7.10.3
    , ghc-paths
    , groom
    , mtl
    -- pandoc < 1.16 doesn't write tables in Markdown correctly and doesn't
    -- respect the 'no-tex-ligatures' option in Markdown.
    , pandoc                    >= 1.16
    -- pandoc-types 1.17 depends on aeson 1.1, which requires ghc > 7.8.4.
    , pandoc-types              <  1.17
    , regex-tdfa

executable semdoc
  main-is:             semdoc.hs
  ghc-options:
      -Wall
  build-depends:
      base                      >= 4 && < 5
    , semdoc
  hs-source-dirs:      tools
  default-language:    Haskell2010