-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lam.cabal
74 lines (70 loc) · 1.59 KB
/
Lam.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Lam
version: 0.1.0.0
homepage: https://github.com/githubuser/Lam#readme
license: BSD3
license-file: LICENSE
author: Tomaz Gomes Mascarenhas
maintainer: tomgm1502@gmail.com
copyright: 2022 Tomaz Gomes Mascarenhas
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable lam
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
build-depends:
Lam
, base >= 4.7 && < 5
, mtl >= 2.2
, containers >= 0.6
library
exposed-modules:
Lam.Context
Lam.Data
Lam.Nat
Lam.Evaluator
Lam.Handler
Lam.Parser
Lam.Parser.Base
Lam.Parser.Lexer
Lam.Parser.Parser
Lam.Result
Lam.TypeChecker
Lam.Utils
Lam.UtilsAgda
Lam.Terminal.Raw
Lam.Terminal.ReadRepl
hs-source-dirs: src
default-language: Haskell2010
default-extensions: ImportQualifiedPost
ghc-options: -Wall
build-tools: happy, alex
build-depends:
base >= 4.7 && < 5
, array >= 0.4
, containers >= 0.5
, mtl >= 2.2
, text >= 1.2
, unix >= 2.5
, ansi-terminal
test-suite unit-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test
other-modules:
Fixtures.ChurchNum
Fixtures.Common
Fixtures.Misc
Fixtures
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
Lam
, base >= 4.7 && < 5
, tasty
, tasty-hunit
, QuickCheck
, tasty-quickcheck
default-language: Haskell2010