forked from mrkkrp/parser-combinators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser-combinators.cabal
40 lines (35 loc) · 1.44 KB
/
parser-combinators.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
name: parser-combinators
version: 0.2.0
cabal-version: >= 1.18
tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2
license: BSD3
license-file: LICENSE.md
author: Mark Karpov <[email protected]>
maintainer: Mark Karpov <[email protected]>
homepage: https://github.com/mrkkrp/parser-combinators
bug-reports: https://github.com/mrkkrp/parser-combinators/issues
category: Parsing
synopsis: Lightweight package providing commonly useful parser combinators
build-type: Simple
description: Lightweight package providing commonly useful parser combinators.
extra-doc-files: CHANGELOG.md
, README.md
source-repository head
type: git
location: https://github.com/mrkkrp/parser-combinators.git
flag dev
description: Turn on development settings.
manual: True
default: False
library
build-depends: base >= 4.5 && < 5.0
if !impl(ghc >= 8.0)
build-depends: semigroups == 0.18.*
exposed-modules: Control.Applicative.Combinators
, Control.Applicative.Combinators.NonEmpty
, Control.Applicative.Permutations
if flag(dev)
ghc-options: -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010