-
Notifications
You must be signed in to change notification settings - Fork 2
/
lens-regex.cabal
67 lines (58 loc) · 1.8 KB
/
lens-regex.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
63
64
65
66
67
name: lens-regex
version: 0.1.3
synopsis: Lens powered regular expression
description: lens interface for regex-base. Please see the README on Github at <https://github.com/himura/lens-regex#readme>
homepage: https://github.com/himura/lens-regex
license: BSD3
license-file: LICENSE
author: Takahiro HIMURA
maintainer: Takahiro HIMURA <[email protected]>
copyright: Copyright (C) 2015 Takahiro HIMURA
category: Text
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 8.8.3, GHC == 8.10.3, GHC == 9.0.1
extra-source-files:
.gitignore
README.md
CHANGELOG.md
sample/*.hs
source-repository head
type: git
location: https://github.com/himura/lens-regex.git
flag build-samples
description: build samples
default: False
library
exposed-modules: Text.Regex.Lens
Text.Regex.Quote
build-depends: base >= 4.5 && < 5
, array
, lens >= 4
, regex-base
, template-haskell
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
executable sample
main-is: sample.hs
hs-source-dirs: sample
if !flag(build-samples)
buildable: False
else
build-depends: base >= 4.5 && < 5
, lens
, lens-regex
, regex-posix
ghc-options: -Wall
default-language: Haskell2010
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
hs-source-dirs: tests
build-depends: base
, directory
, doctest
, filepath
, regex-posix
default-language: Haskell2010