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
|
name: wl-pprint-extras
category: Control, Monads, Text
version: 3.5.0.5
cabal-version: >= 1.8
license: BSD3
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <ekmett@gmail.com>
stability: experimental
homepage: http://github.com/ekmett/wl-pprint-extras/
bug-reports: http://github.com/ekmett/wl-pprint-extras/issues
copyright: Copyright (C) 2011-2012 Edward A. Kmett,
Copyright (C) 2000 Daan Leijen
synopsis: A free monad based on the Wadler/Leijen pretty printer
description: A free monad based on the Wadler/Leijen pretty printer
build-type: Simple
extra-source-files: .travis.yml
source-repository head
type: git
location: git://github.com/ekmett/wl-pprint-extras.git
library
build-depends:
base >= 4.8 && < 5.0,
containers >= 0.4 && < 0.6,
semigroups >= 0.9 && < 1,
semigroupoids >= 3 && < 6,
utf8-string >= 0.3.6 && < 1.1,
text >= 0.11 && < 1.3
exposed-modules:
Text.PrettyPrint.Free
Text.PrettyPrint.Free.Internal
ghc-options: -Wall
hs-source-dirs: src
test-suite wl-pprint-tests
build-depends:
base == 4.*,
wl-pprint-extras,
HUnit,
test-framework,
test-framework-hunit
main-is: WLPPrintTests.hs
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test
|