-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhoq.cabal
62 lines (60 loc) · 2.52 KB
/
hoq.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
name: hoq
version: 0.3
synopsis: A language based on homotopy type theory with an interval type
-- description:
tested-with: GHC == 7.6.3
homepage: http://github.com/valis/hoq
license: GPL-2
license-file: LICENSE
author: Valery Isaev
maintainer: valery.isaev@gmail.com
category: Dependent Types
build-type: Custom
cabal-version: >=1.10
data-dir: data
data-files: hoq.vim
extra-source-files: README.md,
examples/Paths.hoq,
examples/basics.hoq,
examples/hlevel.hoq,
examples/circle.hoq,
examples/lem.hoq,
examples/Nat.hoq,
examples/Cats/Simp1.hoq,
examples/Cats/Cat.hoq
source-repository head
type: git
location: git://github.com/valis/hoq.git
executable hoq
main-is: Main.hs
other-modules: REPL,
Normalization,
File.Load,
Syntax, Syntax.Term, Syntax.Parser,
Syntax.PrettyPrinter, Syntax.ErrorDoc,
Syntax.Parser.Lexer, Syntax.Parser.Parser,
Semantics, Semantics.Value, Semantics.Pattern,
TypeChecking.Definitions.Records,
TypeChecking.Definitions.DataTypes,
TypeChecking.Definitions.Functions,
TypeChecking.Definitions.Termination,
TypeChecking.Definitions,
TypeChecking.Expressions.Utils,
TypeChecking.Expressions.Patterns,
TypeChecking.Expressions.Coverage,
TypeChecking.Expressions.Conditions,
TypeChecking.Expressions.Telescopes,
TypeChecking.Expressions,
TypeChecking.Monad.Scope,
TypeChecking.Monad.Warn,
TypeChecking.Monad,
TypeChecking.Context
build-depends: base >=4 && <5, mtl >=2.1, filepath >=1.3,
bytestring >=0.10, void >= 0.6,
bifunctors >= 4.0,
array >= 0.4, pretty >=1.1,
readline >=1.0
build-tools: happy >= 1.15 && < 2,
alex >= 2.3.1
hs-source-dirs: src
default-language: Haskell2010