This repository has been archived by the owner on Dec 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
94 lines (86 loc) · 1.51 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
name: play
version: 0.1.0.0
license: Apache-2.0
author: "Gil Mizrahi"
maintainer: "gilmi@posteo.net"
copyright: "2018 Gil Mizrahi"
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- async
- containers
- dlist
- transformers
- mtl
- text
- bytestring
- file-embed
- vector
- lens
- bytestring
- linear
- deepseq
- random
- stm
- async
- sdl2
- sdl2-gfx
- sdl2-image
- sdl2-mixer
- sdl2-ttf
library:
source-dirs: src
default-extensions:
- ConstraintKinds
- DataKinds
- DeriveFunctor
- EmptyDataDecls
- FlexibleContexts
- KindSignatures
- LambdaCase
- MultiParamTypeClasses
- MultiWayIf
- PatternGuards
- PatternSynonyms
- RankNTypes
- RecordWildCards
- NamedFieldPuns
- ScopedTypeVariables
- TupleSections
- ViewPatterns
- BangPatterns
executables:
app:
main: Main.hs
source-dirs: app
dependencies:
- base
- optparse-generic
- play
ghc-options:
- -Wall
- -fno-warn-missing-signatures
- -Werror
- -O2
- -rtsopts
- -funfolding-use-threshold=16
- -optc-O3
default-extensions:
- ConstraintKinds
- DataKinds
- DeriveFunctor
- EmptyDataDecls
- FlexibleContexts
- KindSignatures
- LambdaCase
- MultiParamTypeClasses
- MultiWayIf
- PatternGuards
- PatternSynonyms
- RankNTypes
- RecordWildCards
- NamedFieldPuns
- ScopedTypeVariables
- TupleSections
- ViewPatterns