-
Notifications
You must be signed in to change notification settings - Fork 19
/
peggy.cabal
62 lines (50 loc) · 1.83 KB
/
peggy.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Name: peggy
Version: 0.3.2
Synopsis: The Parser Generator for Haskell
Description:
The Parser Generator for Haskell
<http://tanakh.github.com/Peggy>
Homepage: http://tanakh.github.com/Peggy
License: BSD3
License-file: LICENSE
Author: Hideyuki Tanaka
Maintainer: Hideyuki Tanaka <tanaka.hideyuki@gmail.com>
Copyright: Copyright (c)2011, Hideyuki Tanaka
Category: Language
Build-type: Simple
Cabal-version: >=1.8
Extra-source-files: README.md
bootstrap/README.md
bootstrap/Stage1.hs
bootstrap/Stage2.hs
bootstrap/Bootstrap.hs
bootstrap/peggy.peggy
flag build-example
default: False
Source-repository head
Type: git
Location: git://github.com/tanakh/Peggy.git
Library
Exposed-modules: Text.Peggy
, Text.Peggy.CodeGen.TH
, Text.Peggy.LeftRec
, Text.Peggy.Normalize
, Text.Peggy.Parser
, Text.Peggy.Prim
, Text.Peggy.Quote
, Text.Peggy.SrcLoc
, Text.Peggy.Syntax
Build-depends: base == 4.*
, mtl >= 2.0
, ListLike == 3.1.*
, hashtables == 1.0.*
, monad-control == 0.3.*
, template-haskell >= 2.5 && < 2.9
, haskell-src-meta >= 0.5
Executable peggy-example
Hs-source-dirs: example
Main-is: Main.hs
Build-depends: base == 4.*
, peggy
if !flag(build-example)
Buildable: False