-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.cabal
46 lines (44 loc) · 1022 Bytes
/
app.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
name: holbert
version: 0.6
synopsis: An interactive proof assistant
category: Web
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >=1.10
flag mixfix
description: Enable mixfix operator
default: False
executable app
--if flag(mixfix)
-- cpp-options: -DMIXFIX
main-is: Main.hs
other-modules:
StringRep
Prop
ProofTree
Terms
Unification
Editor
Rule
Heading
SyntaxDecl
Paragraph
Controller
Item
DisplayOptions
ImportExport
View.Editor
View.Term
View.Utils
View.ProofTree
View.Prop
View.Paragraph
View.Heading
View.SyntaxDecl
View.Rule
View.Item
ghcjs-options:
-dedupe
build-depends: base, ghcjs-base == 0.2.1.0, aeson, hashable==1.3.5.0, text, miso, mtl, containers==0.6.8, optics-core, Earley, jsaddle == 0.9.8.2, unordered-containers==0.2.19.1
default-language: Haskell2010