packages feed

rainbow-0.4.0.0: rainbow.cabal

name:                rainbow
version:             0.4.0.0
synopsis:            Print text to terminal with colors and effects
description:
  rainbow helps you print Text chunks to a terminal with colors and effects
  such as bold, underlining, etc. You pair each Text with a description
  of how it should appear. Rainbow works with both 8-color and 256-color
  terminals.

  .

  rainbow uses the terminfo package which, in turn, needs the full C
  library for ncurses installed, including the development
  headers. Before installing terminfo, you may need to install the
  ncurses headers (for instance, on Debian systems, install the
  libncurses5-dev package.)

homepage:            http://github.com/massysett/rainbow
license:             BSD3
license-file:        LICENSE
author:              Omari Norman
maintainer:          omari@smileystation.com
copyright:           2013 Omari Norman
category:            System
build-type:          Simple
cabal-version:       >=1.8

source-repository head
    type: git
    location: git://github.com/massysett/rainbow.git

library
  exposed-modules:
      System.Console.Rainbow

  build-depends:
      base ==4.6.*
    , lens ==3.9.*
    , terminfo ==0.3.*
    , text ==0.11.*

  ghc-options: -Wall