1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
-- Initial language-c99-simple.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: language-c99-simple
version: 0.3.0
synopsis: C-like AST to simplify writing C99 programs.
description:
This package is a wrapper on top of 'language-c99'. It provides a simpler
interface more suited for writing C99 programs. It achieves this by
implementing its own C-like AST, supporting the most used C features. In
turn, this AST is translated into actual C99 one, showing that it is an
actual subset.
license: MIT
license-file: LICENSE
author: Frank Dedden
maintainer: Frank Dedden <dev@dedden.net>
-- copyright:
category: Language
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/fdedden/language-c99-simple.git
library
exposed-modules: Language.C99.Simple,
Language.C99.Simple.AST
Language.C99.Simple.Translate,
Language.C99.Simple.Util,
Language.C99.Simple.Expr
-- other-modules:
-- other-extensions:
build-depends: base >=4.9 && <5,
language-c99 >= 0.2 && < 0.3,
language-c99-util >= 0.2 && < 0.3,
mtl >= 2.2.0 && < 2.4
hs-source-dirs: src
default-language: Haskell2010
|