packages feed

colorize-haskell-1.0.0: colorize-haskell.cabal

name:           colorize-haskell
version:        1.0.0
license:        BSD3
license-file:   LICENSE
author:         Iavor S. Diatchki
maintainer:     iavor.diatchki@gmail.com
homepage:       http://github.com/yav/hscolor
build-type:     Simple
cabal-version:  >= 1.2
synopsis:       Highligt Haskell source
description:    TODO
category:       Development

library
  build-depends:
    base >= 3 && < 5,
    haskell-lexer,
    ansi-terminal
  exposed-modules:
    Language.Haskell.Colorize
  ghc-options:
    -Wall -O2


executable hscolor
    main-is:         Main.hs
    -- because we cannot depend on self:
    build-depends:
      base >= 3 && < 5,
      haskell-lexer,
      ansi-terminal
    ghc-options:     -Wall -O2