packages feed

hmumps-0.1.1: hmumps.cabal

-- hmumps.cabal auto-generated by cabal init. For additional options,
-- see
-- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
-- The name of the package.
Name:                hmumps

-- The package version. See the Haskell package versioning policy
-- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
-- standards guiding when and how versions should be incremented.
Version:             0.1.1

Synopsis:            Interpreter for the MUMPS langugae
Description:         Partial interpreter for the MUMPS language.
                     As this isn't nearly complete, it is mostly useful
                     for educational purposes and exploring how the interpreter
                     is constructed.
License:             GPL
License-file:        LICENSE
Author:              Antoine Latter
Maintainer:          aslatter@gmail.com
Copyright:           2007, 2009-2010 Antoine Latter
Category:            Development
Build-type:          Simple

Extra-source-files:  SPLASH, WARRANTY

Cabal-version:       >=1.6

Source-repository head
    Type:      darcs
    Location:  http://community.haskell.org/~aslatter/code/hmumps/

Executable hmumps
  Main-is:             Main.hs
  
  Build-depends:       base == 4.*, regex-compat, parsec == 3.1.*,
                       QuickCheck == 1.*, mtl == 1.1.*, containers == 0.3.*,
                       haskeline == 0.6.*, syb == 0.1.*, text == 0.7.*
  
  Other-modules:       Data.MArray
                       Data.MValue
                       HMumps.Parsers
                       HMumps.Routine
                       HMumps.Runtime
                       HMumps.SyntaxTree
                       HMumps.Types
                       System.Console.Haskeline.Class
                       Templates