-
Notifications
You must be signed in to change notification settings - Fork 0
/
momentu.cabal
306 lines (296 loc) · 8.22 KB
/
momentu.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack
name: momentu
version: 0.1.4.0
synopsis: Purely functional animated GUI framework
description: Purely functional animated GUI framework
category: Graphics
homepage: https://github.com/lamdu/momentu#readme
bug-reports: https://github.com/lamdu/momentu/issues
author: Yair Chuchem, Eyal Lotem
maintainer: [email protected]
license: BSD3
license-file: LICENSE
build-type: Simple
data-files:
fonts/DejaVuSans.ttf
source-repository head
type: git
location: https://github.com/lamdu/momentu
library
exposed-modules:
Control.Concurrent.Extended
Control.Monad.Reader.Extended
Data.Aeson.TH.Extended
Data.Binary.Extended
Data.ByteString.Extended
Data.Has
Data.List.Extended.Momentu
Data.Maybe.Extended
Data.MRUMemo
Data.Property
Data.Text.Bidi
Data.Vector.Vector2
Debug.Trace.Warned
Foreign.C.Types.Instances
Graphics.DrawingCombinators.Extended
Graphics.UI.GLFW.Instances
Graphics.UI.GLFW.Utils
GUI.Momentu
GUI.Momentu.Align
GUI.Momentu.Animation
GUI.Momentu.Animation.Engine
GUI.Momentu.DataFiles
GUI.Momentu.DefaultEnv
GUI.Momentu.Direction
GUI.Momentu.Draw
GUI.Momentu.Draw.FPS
GUI.Momentu.Element
GUI.Momentu.Element.Id
GUI.Momentu.EventMap
GUI.Momentu.FocusDirection
GUI.Momentu.Font
GUI.Momentu.Glue
GUI.Momentu.Hover
GUI.Momentu.I18N
GUI.Momentu.Main
GUI.Momentu.Main.Animation
GUI.Momentu.Main.Config
GUI.Momentu.Main.Events
GUI.Momentu.Main.Events.Loop
GUI.Momentu.MetaKey
GUI.Momentu.ModKey
GUI.Momentu.Prelude
GUI.Momentu.Rect
GUI.Momentu.Render
GUI.Momentu.Responsive
GUI.Momentu.Responsive.Expression
GUI.Momentu.Responsive.Options
GUI.Momentu.Responsive.TaggedList
GUI.Momentu.Scroll
GUI.Momentu.Setup
GUI.Momentu.State
GUI.Momentu.Test
GUI.Momentu.View
GUI.Momentu.Widget
GUI.Momentu.Widget.Events
GUI.Momentu.Widget.Instances
GUI.Momentu.Widget.Types
GUI.Momentu.Widgets.Clickable
GUI.Momentu.Widgets.Cursor
GUI.Momentu.Widgets.DropDownList
GUI.Momentu.Widgets.EventMapHelp
GUI.Momentu.Widgets.FocusDelegator
GUI.Momentu.Widgets.Grid
GUI.Momentu.Widgets.GridView
GUI.Momentu.Widgets.Label
GUI.Momentu.Widgets.ListBox
GUI.Momentu.Widgets.Menu
GUI.Momentu.Widgets.Menu.Search
GUI.Momentu.Widgets.Spacer
GUI.Momentu.Widgets.StdKeys
GUI.Momentu.Widgets.TextEdit
GUI.Momentu.Widgets.TextEdit.Property
GUI.Momentu.Widgets.TextView
GUI.Momentu.Window
GUI.Momentu.Zoom
Numeric.Extended
other-modules:
Paths_momentu
hs-source-dirs:
src
default-extensions:
OverloadedStrings
PartialTypeSignatures
LambdaCase
DeriveTraversable
DeriveGeneric
DeriveAnyClass
DerivingStrategies
FlexibleContexts
TypeOperators
NoImplicitPrelude
ghc-options: -Wall -Widentities -Wimplicit-prelude -Wmissing-home-modules -Wincomplete-patterns -Wnoncanonical-monad-instances -Wsemigroup -Wincomplete-record-updates -Wredundant-constraints -Wunused-packages -O2
build-depends:
GLFW-b >=3.3.0.0 && <3.4
, OpenGL
, aeson >=1.1
, base >=4.12
, base-compat >=0.8.2
, binary >=0.7
, bytestring
, containers >=0.4
, deepseq ==1.4.*
, generic-data >=0.7
, graphics-drawingcombinators >=1.7.1
, lens >=4.18
, mtl >=2.2
, safe-exceptions >=0.1.4
, stm
, template-haskell
, text
, time >=1.2
, timeit
, unicode-properties
, vector
default-language: Haskell2010
if os(osx)
build-depends:
inline-c
, inline-c-objc
executable dropDownList
main-is: dropdownlist.hs
other-modules:
Paths_momentu
hs-source-dirs:
examples
default-extensions:
OverloadedStrings
PartialTypeSignatures
LambdaCase
DeriveTraversable
DeriveGeneric
DeriveAnyClass
DerivingStrategies
FlexibleContexts
TypeOperators
ghc-options: -Wall -Widentities -Wimplicit-prelude -Wmissing-home-modules -Wincomplete-patterns -Wnoncanonical-monad-instances -Wsemigroup -Wincomplete-record-updates -Wredundant-constraints -Wunused-packages -threaded
build-depends:
base >=4.12
, base-compat
, lens
, momentu
, text
default-language: Haskell2010
executable hello-world
main-is: hello-world.hs
other-modules:
Paths_momentu
hs-source-dirs:
examples
default-extensions:
OverloadedStrings
PartialTypeSignatures
LambdaCase
DeriveTraversable
DeriveGeneric
DeriveAnyClass
DerivingStrategies
FlexibleContexts
TypeOperators
ghc-options: -Wall -Widentities -Wimplicit-prelude -Wmissing-home-modules -Wincomplete-patterns -Wnoncanonical-monad-instances -Wsemigroup -Wincomplete-record-updates -Wredundant-constraints -Wunused-packages -threaded
build-depends:
base >=4.12
, base-compat
, lens
, momentu
default-language: Haskell2010
executable searchmenu
main-is: searchmenu.hs
other-modules:
Paths_momentu
hs-source-dirs:
examples
default-extensions:
OverloadedStrings
PartialTypeSignatures
LambdaCase
DeriveTraversable
DeriveGeneric
DeriveAnyClass
DerivingStrategies
FlexibleContexts
TypeOperators
ghc-options: -Wall -Widentities -Wimplicit-prelude -Wmissing-home-modules -Wincomplete-patterns -Wnoncanonical-monad-instances -Wsemigroup -Wincomplete-record-updates -Wredundant-constraints -Wunused-packages -threaded -Wno-partial-type-signatures
build-depends:
base >=4.12
, base-compat
, lens
, momentu
, text
default-language: Haskell2010
executable sys-info
main-is: sys-info.hs
other-modules:
Paths_momentu
hs-source-dirs:
examples
default-extensions:
OverloadedStrings
PartialTypeSignatures
LambdaCase
DeriveTraversable
DeriveGeneric
DeriveAnyClass
DerivingStrategies
FlexibleContexts
TypeOperators
ghc-options: -Wall -Widentities -Wimplicit-prelude -Wmissing-home-modules -Wincomplete-patterns -Wnoncanonical-monad-instances -Wsemigroup -Wincomplete-record-updates -Wredundant-constraints -Wunused-packages
build-depends:
GLFW-b
, base >=4.12
, momentu
default-language: Haskell2010
executable textedit
main-is: textedit.hs
other-modules:
Paths_momentu
hs-source-dirs:
examples
default-extensions:
OverloadedStrings
PartialTypeSignatures
LambdaCase
DeriveTraversable
DeriveGeneric
DeriveAnyClass
DerivingStrategies
FlexibleContexts
TypeOperators
ghc-options: -Wall -Widentities -Wimplicit-prelude -Wmissing-home-modules -Wincomplete-patterns -Wnoncanonical-monad-instances -Wsemigroup -Wincomplete-record-updates -Wredundant-constraints -Wunused-packages -threaded -Wno-partial-type-signatures
build-depends:
base >=4.12
, base-compat
, lens
, momentu
, text
default-language: Haskell2010
test-suite momentu-test
type: exitcode-stdio-1.0
main-is: TestMain.hs
other-modules:
Test.Momentu.Env
Test.Momentu.Instances
Test.Momentu.Prelude
Tests.Hover
Tests.Momentu
Tests.WidgetGlue
Paths_momentu
hs-source-dirs:
test
default-extensions:
OverloadedStrings
PartialTypeSignatures
LambdaCase
DeriveTraversable
DeriveGeneric
DeriveAnyClass
DerivingStrategies
FlexibleContexts
TypeOperators
NoImplicitPrelude
ghc-options: -Wall -Widentities -Wimplicit-prelude -Wmissing-home-modules -Wincomplete-patterns -Wnoncanonical-monad-instances -Wsemigroup -Wincomplete-record-updates -Wredundant-constraints -Wunused-packages -O0
build-depends:
GLFW-b
, HUnit
, QuickCheck
, base >=4.12
, generic-random
, lens
, momentu
, tasty
, tasty-hunit
, tasty-quickcheck
default-language: Haskell2010