-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolumnate.cabal
66 lines (60 loc) · 1.74 KB
/
columnate.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
name: columnate
version: 0.1.0.0
synopsis: Columnate data sets while preserving color codes
-- description:
homepage: http://github.com/bts/columnate
license: BSD3
license-file: LICENSE
author: Brian Schroeder
maintainer: [email protected]
-- copyright:
category: Text
build-type: Simple
cabal-version: >=1.10
extra-source-files:
ChangeLog.md
source-repository head
type: git
location: git://github.com/bts/columnate.git
flag test-tasty
default: True
manual: True
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Columnate
build-depends: attoparsec >= 0.13 && < 0.14
, base < 5
, optparse-generic >= 1.2 && < 1.3
, text >= 1.2 && < 1.3
, these
executable columnate
main-is: Main.hs
build-depends: base < 5
, columnate
hs-source-dirs: exe
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
-- other-modules:
-- other-extensions:
test-suite tasty
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: test.hs
hs-source-dirs: test/src
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
-- other-modules:
if !flag(test-tasty)
buildable: False
else
-- build-tool-depends: tasty-discover:tasty-discover >= 3.0 && < 4.2
build-depends: columnate
build-depends:
base,
hedgehog,
tasty,
-- tasty-golden >= 2.3 && < 2.4,
tasty-hedgehog,
-- tasty-hunit >= 0.9 && < 0.10,
text