packages feed

text-cp437-0.2.2: text-cp437.cabal

name:                text-cp437
version:             0.2.2

synopsis:            Conversion of Text to and from CP437
description:         Some devices such as receipt printers require
                     text encoded in CP437.
                     This library can help convert regular UTF
                     symbols to and from this format.
                     See <https://en.wikipedia.org/wiki/Code_page_437>
homepage:            https://github.com/pliosoft/text-cp437#readme
bug-reports:         https://github.com/pliosoft/text-cp437/issues
license:             BSD3
license-file:        LICENSE
author:              Christopher Lord
maintainer:          christopher@pliosoft.com
copyright:           (C) 2017 Christopher Lord (Pliosoft), All Rights Reserved
category:            Text
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Text.CP437
                     , Data.Text.CP437.Graphical
  build-depends:       base >= 4.7 && < 5
                     , bytestring
                     , text
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite text-cp437-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , text-cp437
                     , QuickCheck
                     , text
                     , bytestring
                     , quickcheck-text
  ghc-options:         -Wall
  default-language:    Haskell2010

source-repository head
  type:     git
  location: git@github.com:pliosoft/text-cp437.git