-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathling.cabal
137 lines (130 loc) · 2.54 KB
/
ling.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
name: ling
version: 0.1.0.0
category: Language
homepage: https://github.com/np/ling#readme
bug-reports: https://github.com/np/ling/issues
author: Nicolas Pouillard <[email protected]>
maintainer: [email protected]
copyright: 2015-2016 Nicolas Pouillard
license: BSD3
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/np/ling
library
hs-source-dirs:
./
build-tools:
alex
, happy
build-depends:
SHA
, array
, base
, bifunctors
, containers
, lens
, mtl >=2.2.1
, pretty-show
, template-haskell
exposed-modules:
Ling
Ling.Abs
Ling.Check.Base
Ling.Check.Core
Ling.Check.Program
Ling.Compile.C
Ling.Defs
Ling.Equiv
Ling.ErrM
Ling.Fmt
Ling.Fmt.Albert.Abs
Ling.Fmt.Albert.Layout
Ling.Fmt.Albert.Migrate
Ling.Fmt.Albert.Print
Ling.Fmt.Benjamin.Abs
Ling.Fmt.Benjamin.Layout
Ling.Fmt.Benjamin.Migrate
Ling.Fmt.Benjamin.Print
Ling.Free
Ling.Fuse
Ling.Fwd
Ling.Layout
Ling.Norm
Ling.Prelude
Ling.Print
Ling.Print.Class
Ling.Proc
Ling.Proto
Ling.Proto.Skel
Ling.Raw
Ling.Reduce
Ling.Reify
Ling.Rename
Ling.Scoped
Ling.Sequential
Ling.Session
Ling.Session.Core
Ling.Subst
Ling.SubTerms
Ling.Type
MiniC.Abs
MiniC.Print
other-modules:
Ling.Fmt.Albert.Lex
Ling.Fmt.Albert.Par
Ling.Fmt.Benjamin.Lex
Ling.Fmt.Benjamin.Par
Ling.Lex
Ling.Par
MiniC.Lex
MiniC.Par
default-language: Haskell2010
executable ling
main-is: Main.hs
other-modules:
Paths_ling
hs-source-dirs:
exec
build-tools:
alex
, happy
build-depends:
SHA
, array
, base
, bifunctors
, containers
, lens
, ling
, mtl >=2.2.1
, pretty-show
, template-haskell
default-language: Haskell2010
executable ling-fmt
main-is: ling-fmt.hs
hs-source-dirs:
exec
build-tools:
alex
, happy
build-depends:
SHA
, array
, base
, bifunctors
, containers
, lens
, ling
, mtl >=2.2.1
, pretty-show
, template-haskell
other-modules:
Main
Paths_ling
default-language: Haskell2010