packages feed

irc-fun-color-0.2.0.0: irc-fun-color.cabal

name:                irc-fun-color
version:             0.2.0.0
synopsis:            Add color and style decorations to IRC messages.
description:
  An extension to IRC allows text formatting to be encoded into a message.
  Colors and decorations (e.g. bold) are available. This library can encode
  this formatting into a plain text message. It also provides integration with
  "Formatting" for flexible mixing of styling, formatting and IRC-specific
  types.
homepage:            http://rel4tion.org/projects/irc-fun-color/
bug-reports:         http://rel4tion.org/projects/irc-fun-color/tickets/
license:             PublicDomain
license-file:        COPYING
author:              fr33domlover
maintainer:          fr33domlover@riseup.net
copyright:           ♡ Copying is an act of love. Please copy, reuse and share.
category:            Network
build-type:          Simple
extra-source-files:  AUTHORS ChangeLog COPYING INSTALL NEWS.md README.md
cabal-version:       >=1.10

source-repository head
  type:                darcs
  location:            http://hub.darcs.net/fr33domlover/irc-fun-color

library
  exposed-modules:     Network.IRC.Fun.Color
                     , Network.IRC.Fun.Color.Format
                     , Network.IRC.Fun.Color.Format.Long
                     , Network.IRC.Fun.Color.Format.Short
                     , Network.IRC.Fun.Color.Style
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base          >=4.7 && <5
                     , dlist         >=0.7
                     , formatting    >=6.2
                     , irc-fun-types
                     , text          >=1
                     , text-show     >=2
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite test
  default-language:    Haskell2010
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             test.hs
  build-depends:       base
                     , irc-fun-color
                     , text