generated from omelkonian/agda-minimal-backend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathagda2lambox.cabal
61 lines (58 loc) · 2.28 KB
/
agda2lambox.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
cabal-version: 2.2
name: agda2lambox
version: 1.1
author: Orestis Melkonian, Carlos Tomé Cortiñas, Bohdan Liesnikov
category: Language, Compiler
build-type: Simple
synopsis: Compiling Agda code to λ-box.
license: MIT
license-file: LICENSE
extra-doc-files: README.md
source-repository head
type: git
location: https://github.com/omelkonian/agda2lambox.git
executable agda2lambox
hs-source-dirs: src
main-is: Main.hs
other-modules: Agda.Utils,
Agda.Utils.EliminateDefaults,
Agda.Utils.EtaExpandConstructors,
Agda.Utils.Simplify,
Agda.Utils.Treeless,
Agda2Lambox.Compile.Target,
Agda2Lambox.Compile.Utils,
Agda2Lambox.Compile.Monad,
Agda2Lambox.Compile.Term,
Agda2Lambox.Compile.Function,
Agda2Lambox.Compile.Inductive,
Agda2Lambox.Compile.Type,
Agda2Lambox.Compile.TypeScheme,
Agda2Lambox.Compile,
LambdaBox.Names,
LambdaBox.Term,
LambdaBox.Type,
LambdaBox.Env,
LambdaBox,
CoqGen,
SExpr,
Paths_agda2lambox
autogen-modules: Paths_agda2lambox
build-depends: base >= 4.10 && < 4.22,
Agda >= 2.8 && < 2.9,
deepseq >= 1.4.4 && < 1.6,
sexpresso >= 1.2.5 && < 1.3,
pretty-show,
containers,
directory,
filepath,
text,
mtl
default-language: Haskell2010
default-extensions:
LambdaCase RecordWildCards PatternSynonyms TupleSections
ViewPatterns PatternGuards
ScopedTypeVariables
TypeFamilies TypeOperators TypeApplications
FunctionalDependencies TypeSynonymInstances ConstraintKinds
DoAndIfThenElse BlockArguments MultiWayIf
ImportQualifiedPost