-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreglang.cabal
More file actions
53 lines (48 loc) · 1.47 KB
/
Copy pathreglang.cabal
File metadata and controls
53 lines (48 loc) · 1.47 KB
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
name: reglang
version: 0.1.0.0
synopsis: Regular language enumerator
description: Regular language enumerator with some extensions
license: GPL-3
license-file: LICENSE
author: Aleš Omerzel, Tadej Borovšak
maintainer: omerzel.vales@gmail.com
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/tadeboro/reglang
library
exposed-modules: Regex.Enumerator,
Regex.Enumerator.Internal,
Regex.Parser,
Regex.Parser.Internal
build-depends: base,
parsec
hs-source-dirs: src
default-language: Haskell2010
executable listlang
main-is: listlang.hs
default-language: Haskell2010
hs-source-dirs: src
build-depends: base,
parsec
test-suite doctest
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: doctest.hs
build-depends: base,
doctest
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test,
src
main-is: spec.hs
build-depends: base,
hspec,
QuickCheck,
parsec,
reglang