packages feed

LambdaShell-0.9.1: LambdaShell.cabal

Name:            LambdaShell
Cabal-Version:   >= 1.2
Build-Type:	 Simple
Version:         0.9.1
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://www.cs.princeton.edu/~rdockins/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
  Extensions:
     MultiParamTypeClasses
  Extra-libraries:
     readline
  GHC-Options: -O
  Build-Depends:
     base, haskell98, parsec,
     mtl, readline,
     Shellac >= 0.9,
     Shellac-readline >= 0.9
  if impl( ghc >= 6.8 )
     Build-Depends: containers