-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathprettyprinter-ansi-terminal.cabal
More file actions
62 lines (56 loc) · 1.95 KB
/
prettyprinter-ansi-terminal.cabal
File metadata and controls
62 lines (56 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
name: prettyprinter-ansi-terminal
version: 1.1.1.2
cabal-version: >= 1.10
category: User Interfaces, Text
synopsis: ANSI terminal backend for the »prettyprinter« package.
description: See README.md
license: BSD2
license-file: LICENSE.md
extra-source-files: README.md
, misc/version-compatibility-macros.h
, CHANGELOG.md
author: David Luposchainsky
maintainer: David Luposchainsky <dluposchainsky at google>
bug-reports: http://github.com/quchen/prettyprinter/issues
homepage: http://github.com/quchen/prettyprinter
build-type: Simple
tested-with: GHC == 7.8.4
, GHC == 7.10.2
, GHC == 7.10.3
, GHC == 8.0.1
, GHC == 8.0.2
, GHC == 8.2.2
source-repository head
type: git
location: git://github.com/quchen/prettyprinter.git
library
exposed-modules: Data.Text.Prettyprint.Doc.Render.Terminal
, Data.Text.Prettyprint.Doc.Render.Terminal.Internal
ghc-options: -Wall -O2
hs-source-dirs: src
include-dirs: misc
default-language: Haskell2010
other-extensions:
CPP
, OverloadedStrings
build-depends:
base >= 4.5 && < 5
, ansi-terminal >= 0.4.0
, text >= 1.2
, prettyprinter >= 1.1.1
if impl(ghc >= 8.0)
ghc-options: -Wcompat
if !impl(ghc >= 8.0)
build-depends: semigroups >= 0.1
test-suite doctest
type: exitcode-stdio-1.0
hs-source-dirs: test/Doctest
main-is: Main.hs
build-depends:
base >= 4.7 && < 5
, doctest >= 0.9
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
if impl (ghc < 7.10)
buildable: False
-- Doctest cannot search folders in old versions it seems :-(