-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhalyard.cabal
36 lines (31 loc) · 1.36 KB
/
halyard.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
name: halyard
version: 0.1.0.1
synopsis: An offline stand-alone RegEx tester
description: A tool to test your regular expressions against sample input,
running offline and therefore being a nice substitute for any
obscure online tools - especially for sensitive data.
category: Development
license: GPL-3
license-file: LICENSE
author: patrickp89
maintainer: [email protected]
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
bug-reports: https://github.com/patrickp89/halyard/issues
source-repository head
type: git
location: https://github.com/patrickp89/halyard
executable halyard
main-is: Main.hs
build-depends: base >=4.11.1 && <=4.13.0.0,
-- haskell-gi-base 0.24.2 requires hsc2hs >= 0.68.6,
-- but Cabal 2.4 (a Travis.com constraint) only provides 0.68.5!
haskell-gi-base <= 0.23.0,
gi-gtk >= 3.0.32 && <= 3.0.36,
regex-tdfa <= 1.3.1.0,
text >= 1.2.3.1 && <= 1.2.4.0,
flow <= 1.0.21
hs-source-dirs: src
other-modules: RegExUtil
default-language: Haskell2010