packages feed

language-vhdl-0.1.0.2: language-vhdl.cabal

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

name:                language-vhdl
version:             0.1.0.2
synopsis:            VHDL AST and pretty printer in Haskell
-- description:         
license:             BSD3
license-file:        LICENSE
author:              Markus Aronsson <mararon@chalmers.se>
maintainer:          mararon@chalmers.se
-- copyright:
homepage:            https://github.com/markus-git/language-vhdl
description:         VHDL AST and pretty printer according to the VHDL language reference manual (2000 Edition).
category:            Language
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

source-repository head
  type:        git
  location:    git://github.com/markus-git/language-vhdl

library
  exposed-modules:     Language.VHDL,
                       Language.VHDL.Pretty,
                       Language.VHDL.Syntax
  -- other-modules:       
  other-extensions:    StandaloneDeriving,
                       FlexibleInstances
  build-depends:       base   >=4 && <5,
                       pretty >=1 && <2
  hs-source-dirs:      src
  default-language:    Haskell2010