packages feed

darkplaces-text-0.1: darkplaces-text.cabal

name:                darkplaces-text
version:             0.1
license:             GPL-2
license-file:        LICENSE
author:              Slava Bacherikov
maintainer:          slava@bacher09.org
homepage:            https://github.com/bacher09/darkplaces-text
bug-reports:         https://github.com/bacher09/darkplaces-text/issues
category:            Game
build-type:          Simple
copyright:           (c) Slava Bacherikov 2015
cabal-version:       >=1.10
stability:           alpha
synopsis:            Parser for darkplaces colorful text
description:

  This package supports parsing and displaying darkplaces colorfull text.
  Darkplaces text may contains special color tags and unicode glyphs
  that are unique for darkplaces fonts.

library
  exposed-modules:     DarkPlaces.Text
  other-modules:       DarkPlaces.Text.Lexer,
                       DarkPlaces.Text.Chars,
                       DarkPlaces.Text.Colors
  -- other-extensions:    
  build-depends:       base >=4.7 && <4.8,
                       bytestring >=0.10 && <0.11,
                       array,
                       text >=1.0,
                       vector >=0.10,
                       ansi-terminal >=0.6

  build-tools:         alex
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -O2 -funbox-strict-fields -Wall -fno-warn-name-shadowing

source-repository head
  type:                git
  location:            https://github.com/bacher09/darkplaces-text