packages feed

dzen-utils-0.1.1: dzen-utils.cabal

cabal-version:       >= 1.2.3
name:                dzen-utils
version:             0.1.1
synopsis:            Utilities for creating inputs for dzen.
category:            System
license:             GPL
license-file:        LICENSE
author:              Felipe Almeida Lessa
copyright:           (c) 2009 Felipe A. Lessa
maintainer:          felipe.lessa@gmail.com
build-type:          Simple
tested-with:         GHC
extra-source-files:  Example1.hs, Example2.hs
description:
  This library has everything you need to create your @dzen@'s
  bar input strings using powerful combinators in a type-safe way.
  .
  It can be used to create standalone \"scripts\" with @runhaskell@
  or it can be used inside @xmonad@'s main function.
  .
  To see what can be done, please read the documentation of the
  toplevel module "System.Dzen".

library
  build-depends:     base    >= 4   && < 5
                   , colour  >= 2.2 && < 3
                   , process >= 1.0 && < 2
  ghc-options:       -Wall
  extensions:
    MultiParamTypeClasses,
    OverloadedStrings,
    TypeFamilies
  exposed-modules:
    System.Dzen,
    System.Dzen.Base,
    System.Dzen.Colour,
    System.Dzen.Graphics,
    System.Dzen.Padding,
    System.Dzen.Bars,
    System.Dzen.Process
  other-modules:
    System.Dzen.Internal