packages feed

ctkl-0.27.0.0: ctkl.cabal

-- Initial ctkl.cabal generated by cabal init.  For further documentation,
-- see http://haskell.org/cabal/users-guide/

name:                ctkl
version:             0.27.0.0
synopsis:  packaging of Manuel Chakravarty's CTK Light for Hackage
description: Functional languages like Haskell are ideal for implementing compilers. Complemented with a lexer and parser generator, they provide much of the functionality and ease-of-use associated with specialized compiler tools (aka compiler compilers) while being more flexible, better supported, and guaranteeing better long time availability. There is a significant set of functionality that is required in each compiler like symbol table management, input-output operations, error management, and so on, which are good candidates for code reuse. The Compiler Toolkit is an attempt to provide an open collection of modules for these recurring tasks in a popular functional language. The toolkit is used for the interface generator C->Haskell.
license:             BSD3
license-file:        LICENSE
author:              Manuel Chakravarty, Sven Panne
maintainer:          mwotton@gmail.com
category:            Text
build-type:          Simple
extra-source-files:  README.CTKlight
cabal-version:       >=1.10

library
  exposed-modules: Text.CTK.BaseVersion,
                   Text.CTK.Common,
                   Text.CTK.Config,
                   Text.CTK.DLists,
                   Text.CTK.Errors,
                   Text.CTK.FiniteMaps,
                   Text.CTK.FNameOps,
                   Text.CTK.GetOpt,
                   Text.CTK.Lexers,
                   Text.CTK.Parsers,
                   Text.CTK.Pretty,
                   Text.CTK.Sets,
                   Text.CTK.Utils

  build-depends: base >=4.7 && <4.8
               , array
  hs-source-dirs:      src
  default-language:    Haskell2010