-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlambda-sigma.cabal
More file actions
65 lines (51 loc) · 2.02 KB
/
lambda-sigma.cabal
File metadata and controls
65 lines (51 loc) · 2.02 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
cabal-version: >= 2.0
-- Initial package description 'lambda-sigma.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: lambda-sigma
version: 0.1.0.0
-- synopsis:
description:
Toy implimentation of explicit-substitution lamba calculus
Abadi, M., L. Cardelli, P.-L. Curien, and J.-J. Levy. 1989. “Explicit Substitutions.”
In Proceedings of the 17th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages, 31–46. POPL ’90.
San Francisco, California, USA: Association for Computing Machinery.
https://doi.org/10.1145/96709.96712.
bug-reports: https://github.com/apoorvingle/lambda-sigma/issues
license-file: LICENSE
license: MIT
author: Apoorv Ingle
maintainer: apoorv.ingle@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
-- Modules exported by the library.
exposed-modules: UTLang
STLang
Common
STTypeChecker
Examples
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
other-extensions: MultiParamTypeClasses
, InstanceSigs
-- Other library packages from which modules are imported.
build-depends: base >= 4.12 && <= 5.0
, containers ^>= 0.6
, mtl >=2.2.1 && < 2.3
-- Directories containing source files.
hs-source-dirs: src
-- Base language which the package is written in.
default-language: Haskell2010
Test-Suite ls-eval-test
Type: exitcode-stdio-1.0
Main-is: Eval.hs
build-depends: base >= 4.12 && <= 5.0
, containers ^>= 0.6
, mtl >=2.2.1 && < 2.3
, lambda-sigma
hs-source-dirs: test
default-language: Haskell2010