forked from lamdu/lamdu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
216 lines (207 loc) · 3.86 KB
/
package.yaml
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
name: Lamdu
version: 0.8.1
synopsis: "A next generation IDE"
description: "Lamdu functional programming editor"
github: "lamdu/lamdu"
license: GPL
author: "Eyal Lotem, Yair Chuchem"
homepage: http://www.lamdu.org
maintainer:
flags:
ekg:
description: Enable ekg support in Lamdu
default: false
manual: true
dev:
description: Build a dev version (faster build, no version output support)
default: false
manual: true
data-dir: data
data-files:
- "*"
- "**/*"
dependencies:
- base >= 4.12
default-extensions:
- NoImplicitPrelude
- LambdaCase
ghc-options:
- -Wall
- -Wno-partial-type-signatures
- -Widentities
- -Wimplicit-prelude
- -Wmissing-home-modules
- -Wincomplete-patterns
- -Wnoncanonical-monad-instances
- -Wsemigroup
- -Wincomplete-record-updates
- -Wredundant-constraints
- -Wunused-packages
ghc-prof-options:
- -fprof-auto
- -fprof-cafs
library:
source-dirs: src
default-extensions:
- PartialTypeSignatures
- DeriveTraversable
- DeriveGeneric
- DeriveAnyClass
- DerivingStrategies
- FlexibleContexts
- OverloadedStrings
- TypeOperators
ghc-options:
- -O2
dependencies:
- aeson >= 1.1
- aeson-diff
- aeson-pretty
- ansi-wl-pprint
- base-compat >= 0.8.2
- base16-bytestring >=1
- binary >= 0.7
- bitmap
- bytestring
- containers >= 0.4
- data-default >= 0.5
- deepseq
- directory >= 1.0.1.1
- ekg-core
- filepath >= 1.1
- edit-distance
- generic-data >= 0.7
- GLFW-b >= 3.3.0.0
- graphics-drawingcombinators >= 1.7.1
- hashable
- lamdu-calculus >= 0.2
- language-ecmascript >= 0.18
- lens >= 4.18
- lens-aeson
- rocksdb-haskell >= 1.0.2
- List >= 0.5.1
- momentu
- mtl >= 2.2
- inline-js-core
- optparse-applicative >= 0.12
- ordered-containers
- pretty >=1.1.2
- process
- random >= 1.0.0
- split
- stb-image
- hypertypes
- temporary
- text
- text-trie
- time >= 1.2
- timeit
- transformers >= 0.4.3
- uuid >= 1.3
- uuid-types >= 1.0
- vector
- zip-archive
- cryptohash-sha256
- executable-path
when:
- condition: flag(ekg)
cpp-options: -DWITH_EKG
dependencies: ekg
executables:
lamdu:
main: Lamdu/Main.hs
source-dirs: src/main
default-extensions:
- PartialTypeSignatures
- DeriveTraversable
- DeriveGeneric
- DeriveAnyClass
- DerivingStrategies
- FlexibleContexts
dependencies:
- Lamdu
- directory
- process
- template-haskell
- base-compat
ghc-options:
- -rtsopts
- -with-rtsopts=-A128M
- -O2
- -threaded
ghc-prof-options:
- -rtsopts
when:
- condition: os(darwin)
ld-options: -mmacosx-version-min=10.9
- condition: flag(ekg)
ghc-options: -with-rtsopts=-T
- condition: flag(dev)
cpp-options: -DDEV_BUILD
migrate:
main: tools/migrate.hs
dependencies:
- Lamdu
- aeson
- aeson-pretty
- bytestring
- directory
- filepath
- optparse-applicative >= 0.12
make_archive:
main: tools/make_archive.hs
dependencies:
- directory
- filepath
- lens
- process
tests:
Tests:
main: Tests.hs
source-dirs: test
default-extensions:
- PartialTypeSignatures
- DeriveTraversable
- DeriveGeneric
- DeriveAnyClass
- DerivingStrategies
- FlexibleContexts
- OverloadedStrings
- TypeOperators
ghc-options:
- -O0
- -threaded
ghc-prof-options:
- -rtsopts
dependencies:
- Lamdu
- aeson
- aeson-diff
- aeson-pretty
- bytestring
- Cabal
- containers
- deepseq
- directory
- filepath
- generic-constraints
- GLFW-b
- HUnit
- hypertypes
- inline-js-core
- lamdu-calculus
- lens
- lens-aeson
- momentu
- mtl
- pretty
- process
- random
- split
- tasty
- tasty-hunit
- text
- uuid-types
- yaml