-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpapillon.cabal
53 lines (45 loc) · 1.28 KB
/
papillon.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
build-type: Simple
cabal-version: >= 1.8
name: papillon
version: 0.1.1.1
stability: Experimental
author: Yoshikuni Jujo <[email protected]>
maintainer: Yoshikuni Jujo <[email protected]>
homepage: https://skami.iocikun.jp/haskell/packages/papillon
license: BSD3
license-file: LICENSE
category: Parsing
synopsis: packrat parser
description: see examples directory
extra-source-files:
examples/arith.hs
examples/config.hs
examples/test.config
source-repository head
type: git
location: git://github.com/YoshikuniJujo/papillon.git
source-repository this
type: git
location: git://github.com/YoshikuniJujo/papillon.git
tag: 0.1.0.6
library
hs-source-dirs: src
exposed-modules: Text.Papillon, Text.Papillon.Core
other-modules:
Text.Papillon.Parser,
Text.Papillon.Papillon,
Text.Papillon.Papillon,
Text.Papillon.List
build-depends:
base > 3 && < 5, template-haskell == 2.15.*,
monads-tf == 0.1.*, transformers == 0.5.*,
bytestring == 0.10.*
ghc-options: -Wall -fno-warn-tabs
executable papillon
hs-source-dirs: bin
main-is: papillon.hs
other-modules: Class
build-depends:
directory, filepath, base > 3 && < 5, template-haskell == 2.15.*,
monads-tf == 0.1.*, transformers == 0.5.*, papillon
ghc-options: -Wall -fno-warn-tabs