packages feed

parsec-parsers-0.2: parsec-parsers.cabal

name:          parsec-parsers
category:      Text, Parsing
version:       0.2
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <ekmett@gmail.com>
stability:     provisional
homepage:      http://github.com/ekmett/parsec-parsers/
bug-reports:   http://github.com/ekmett/parsec-parsers/issues
copyright:     Copyright (C) 2012-2013 Edward A. Kmett
synopsis:      Parsing instances for Parsec
description:
    This permits @parsec@ parsers to be written using the combinators from the @parsers@ package.
build-type:    Custom
extra-source-files:
  .ghci
  .gitignore
  .vim.custom
  .travis.yml
  CHANGELOG.markdown
  README.markdown

source-repository head
  type: git
  location: git://github.com/ekmett/parsec-parsers.git

library
  default-language: Haskell98

  build-depends:
    base    >= 3 && < 5,
    parsers >= 0.5 && < 0.11,
    parsec  >= 3.1 && < 3.2

  hs-source-dirs: src
  ghc-options: -Wall

  exposed-modules:
    Text.Parser.Parsec

test-suite doctests
  type:    exitcode-stdio-1.0
  main-is: doctests.hs
  build-depends:
    base,
    directory >= 1.0,
    doctest >= 0.9.1,
    filepath
  ghc-options: -Wall -threaded
  if impl(ghc<7.6.1)
    ghc-options: -Werror
  hs-source-dirs: tests