-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLambdaShell.cabal
More file actions
40 lines (39 loc) · 1.06 KB
/
LambdaShell.cabal
File metadata and controls
40 lines (39 loc) · 1.06 KB
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
Name: LambdaShell
Cabal-Version: >= 1.22
Build-Type: Simple
Version: 0.9.9
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
GHC-Options: -W
Default-Extensions:
MultiParamTypeClasses
Default-Language: Haskell2010
Build-Depends:
base == 4.*,
parsec, mtl,
Shellac >= 0.9.9,
Shellac-readline,
containers