packages feed

language-cil-0.2.1: language-cil.cabal

name:                language-cil
version:             0.2.1
homepage:            https://github.com/tomlokhorst/language-cil
synopsis:            Manipulating Common Intermediate Language AST
description:         Language-Cil is a Haskell library for manipulating CIL
                     abstract syntax and generating .il files.
                     .
                     Common Intermediate Language (CIL), formerly known as
                     Microsoft Intermediate Language (MSIL), is the lowest
                     level language that runs on Microsoft .NET and Mono.
                     .
                     This library is still  under development, it only supports
                     a small subset of the full CIL.
                     .
                     See <https://github.com/tomlokhorst/language-cil#readme>
                     for an example of how to quickly get started.
license:             BSD3
license-file:        LICENSE
author:              Jeroen Leeuwestein,
                     Tom Lokhorst
maintainer:          Tom Lokhorst <tom@lokhorst.eu>
stability:           Experimental
category:            Language, .NET
build-type:          Simple
cabal-version:       >= 1.6

library
  hs-source-dirs:    src
  build-depends:     base > 3 && < 5,
                     bool-extras >= 0.3.0 && < 0.4
  exposed-modules:   Language.Cil
                     Language.Cil.Analysis
                     Language.Cil.Build
                     Language.Cil.Pretty
                     Language.Cil.Syntax