-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhee.cabal
57 lines (49 loc) · 1.28 KB
/
hee.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
name: hee
version: 0.0.0
cabal-version: >= 1.14
license: BSD3
license-file: LICENSE.md
author: Kvle Putnam <[email protected]>
maintainer: Kvle Putnam <[email protected]>
homepage: https://github.com/kputnam/hee
category: Language
build-type: Simple
synopsis: Functional and concatenative programming language
description:
Functional and concatenative programming language
library
ghc-options: -Wall -fno-warn-name-shadowing
hs-source-dirs: .
default-language: Haskell2010
build-depends:
mtl >= 2.0.0,
base >= 3 && <5,
text >= 0.11.2.3,
pretty >= 1.1.1.0,
binary >= 0.5.1.1,
text-binary >= 0.1.0,
attoparsec >= 0.10.0.0,
containers >= 0.4.0.0
exposed-modules:
Hee.Inference.Constraint
Hee.Parser.Term
Hee.Syntax.Term
Hee.Syntax.Type
test-suite main
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests
default-language: Haskell2010
build-depends:
hee,
base >= 3 && <5,
text >= 0.11.2.3,
attoparsec >= 0.10.2.0,
HUnit >= 1.2,
QuickCheck >= 2.4,
test-framework >= 0.6.1,
test-framework-hunit >= 0.2.7,
test-framework-quickcheck2 >= 0.2.8
source-repository head
type: git
location: https://github.com/kputnam/hee