packages feed

LambdaShell-0.9.3: LambdaShell.cabal

Name:            LambdaShell
Cabal-Version:   >= 1.2
Build-Type:	 Simple
Version:         0.9.3
License:         GPL
License-file:    LICENSE
Author:          Robert Dockins
Maintainer:      robdockins AT fastmail DOT fm
Stability:       Beta
Category:        Compilers/Interpreters
Synopsis:        Simple shell for evaluating lambda expressions
Homepage:        http://rwd.rdockins.name/lambda/home/
Description:
  The lambda shell is a feature-rich shell environment and command-line tool for
  evaluating terms of the pure, untyped lambda calculus.  The Lambda
  Shell builds on the shell creation framework Shellac, and showcases
  most of Shellac's features.

Executable lambdaShell
  Main-Is: main.hs
  Hs-Source-Dirs: src
  Other-Modules:
     CPS
     Env
     Lambda
     LambdaCmdLine
     LambdaParser
     LambdaShell
     Version
     Paths_LambdaShell
  Extensions:
     MultiParamTypeClasses
  GHC-Options: -W -fno-warn-unused-binds -fno-warn-unused-matches
  Build-Depends:
     base >= 2, base < 5,
     parsec, mtl,
     Shellac >= 0.9,
     Shellac-compatline >= 0.9
  if impl( ghc >= 6.8 )
     Build-Depends: containers