packages feed

generic-pretty-0.1.0: generic-pretty.cabal

name:                generic-pretty
version:             0.1.0
synopsis:            Pretty printing for Generic value
description:         Pretty printing for Generic value. For more detail, please refer to <https://github.com/tanakh/generic-pretty>.
homepage:            https://github.com/tanakh/generic-pretty
license:             MIT
license-file:        LICENSE
author:              Hideyuki Tanaka
maintainer:          tanaka.hideyuki@gmail.com
copyright:           (c) 2015 Hideyuki Tanaka
category:            Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            https://github.com/tanakh/generic-pretty.git

library
  exposed-modules:     Text.PrettyPrint.Generic
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.8 && <4.9
                     , ansi-wl-pprint
                     , bytestring >=0.10
                     , containers >=0.5.6
                     , text >=1.2
                     , vector >=0.10
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite generic-pretty-test
  type:                exitcode-stdio-1.0
  main-is:             test.hs
  build-depends:       base >=4.8 && <4.9
                     , tasty >=0.10
                     , tasty-hunit
                     , containers
                     , vector
                     , bytestring
                     , text
                     , generic-pretty
  hs-source-dirs:      test
  default-language:    Haskell2010