-
Notifications
You must be signed in to change notification settings - Fork 0
/
parsec2.cabal
46 lines (46 loc) · 1.47 KB
/
parsec2.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cabal-version: >= 1.2
name: parsec2
version: 1.0.1
license: BSD3
license-file: LICENSE
author: Daan Leijen <daan@cs.uu.nl>
maintainer: Antoine Latter <aslatter@gmail.com>
homepage: https://github.com/aslatter/parsec2
bug-reports: https://github.com/aslatter/parsec2/issues
category: Parsing
synopsis: Monadic parser combinators
description:
Parsec is designed from scratch as an industrial-strength parser
library. It is simple, safe, well documented (on the package
homepage), has extensive libraries and good error messages,
and is also fast.
.
This package is a maintained fork of version 2.1 of the parsec
package, intended to preserve its simplicity and portability.
build-type: Simple
extra-source-files: CHANGES.md
cabal-version: >= 1.6
tested-with: GHC >= 7.6 && < 7.11
library {
exposed-modules:
Text.ParserCombinators.Parsec.Error,
Text.ParserCombinators.Parsec.Char,
Text.ParserCombinators.Parsec.Combinator,
Text.ParserCombinators.Parsec.Expr,
Text.ParserCombinators.Parsec.Perm,
Text.ParserCombinators.Parsec.Pos,
Text.ParserCombinators.Parsec.Prim,
Text.ParserCombinators.Parsec
build-depends: base<5
extensions: ExistentialQuantification
if !impl(nhc98) {
extensions: PolymorphicComponents
exposed-modules:
Text.ParserCombinators.Parsec.Language,
Text.ParserCombinators.Parsec.Token
}
}
source-repository head {
type: git
location: https://github.com/aslatter/parsec2
}