-
Notifications
You must be signed in to change notification settings - Fork 0
/
lilo.cabal
43 lines (38 loc) · 1.32 KB
/
lilo.cabal
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
name: lilo
version: 0.1.0.0
synopsis: A tiny lambda calculus DSL
license: MIT
license-file: LICENSE
author: Timothy Clem
maintainer: [email protected]
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a
-- README.
-- extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable lilo
-- .hs or .lhs file containing the Main module.
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: Syntax
-- , Checker
, Pretty
, Parser
-- , Infer
, Eval
, ALaCarte
, Data.Functor.Classes.Show.Generic
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Other library packages from which modules are imported.
build-depends: base >=4.8 && <5
, containers
, effects
, mtl
, parsec
, pretty
, free
-- Directories containing source files.
hs-source-dirs: src
-- Base language which the package is written in.
default-language: Haskell2010