-
Notifications
You must be signed in to change notification settings - Fork 2
/
inch.cabal
85 lines (79 loc) · 3.32 KB
/
inch.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
74
75
76
77
78
79
80
81
82
83
84
85
Name: inch
Version: 0.2.0
Synopsis: A type-checker for Haskell with integer constraints
Description:
Inch is a type-checker for a subset of Haskell (plus some GHC
extensions) with the addition of integer constraints. After
successfully type-checking a source file, it outputs an
operationally equivalent version with the type-level integers
erased, so it can be used as a preprocessor in order to compile
programs.
Homepage: https://github.com/adamgundry/inch/
bug-reports: https://github.com/adamgundry/inch/issues
License: BSD3
License-file: LICENSE
Author: Adam Gundry <[email protected]>
Maintainer: Adam Gundry <[email protected]>
Copyright: Copyright (c) 2011 Adam Gundry
Category: Language
Build-type: Simple
Extra-source-files: README.md
examples/Cost.hs
examples/MergeSort.hs
examples/NonlinearCost.hs
examples/Queue.hs
examples/RedBlack.hs
examples/RedBlackCost.hs
examples/Units.hs
examples/Vectors.hs
examples/Wires.hs
data-dir: data
data-files: *.inch
Cabal-version: >=1.8
Executable inch
ghc-options: -Wall -rtsopts
hs-source-dirs: src
Main-is: Language/Inch/Main.lhs
Build-depends: base == 4.*,
IndentParser > 0.2 && < 0.3,
parsec > 3.1 && < 3.5,
presburger == 0.4.*,
pretty >= 1.0 && < 2,
mtl > 2.0 && < 2.3,
containers > 0.4 && < 0.6,
filepath > 1.2 && < 1.4
Other-modules: Language.Inch.BwdFwd,
Language.Inch.Check,
Language.Inch.Context
Language.Inch.Erase
Language.Inch.Error
Language.Inch.File
Language.Inch.KindCheck
Language.Inch.Kind
Language.Inch.Kit
Language.Inch.ModuleSyntax
Language.Inch.Parser
Language.Inch.PrettyPrinter
Language.Inch.ProgramCheck
Language.Inch.Solver
Language.Inch.Syntax
Language.Inch.TyNum
Language.Inch.TypeCheck
Language.Inch.Type
Language.Inch.Unify
Test-Suite test-inch
type: exitcode-stdio-1.0
hs-source-dirs: src tests
main-is: Main.lhs
build-depends: base == 4.*,
IndentParser > 0.2 && < 0.3,
parsec > 3.1 && < 3.5,
presburger == 0.4.*,
pretty >= 1.0 && < 2,
mtl > 2.0 && < 2.3,
containers > 0.4 && < 0.6,
filepath > 1.2 && < 1.4,
directory > 1.1 && < 1.3
source-repository head
type: git
location: git://github.com/adamgundry/inch.git