-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.yaml
70 lines (70 loc) · 1.26 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
name: dino-rush
version: '0.0.0'
github: jxv/dino-rush
license: BSD3
category: Game
synopsis: A Skinner box, running platformer with a dinosaur
description: A Skinner box, running platformer with a dinosaur
maintainer: Joe Vargas
copyright: 2018 Joe Vargas
data-files:
- resource/dino.json
- resource/dino.png
extra-source-files:
- package.yaml
- README.md
- stack.yaml
ghc-options: -Wall
default-extensions:
- DuplicateRecordFields
- FlexibleContexts
- FlexibleInstances
- GeneralizedNewtypeDeriving
- LambdaCase
- NamedFieldPuns
- ScopedTypeVariables
- OverloadedStrings
library:
dependencies:
- base >=4.7 && <5
- aeson
- animate
- bytestring
- containers
- key-state
- linear
- lens
- mtl
- safe
- safe-exceptions
- sdl2
- sdl2-image
- sdl2-mixer
- sdl2-ttf
- StateVar
- text
- text-conversions
- random
source-dirs: library
executables:
dino-rush:
dependencies:
- base >=4.7 && <5
- dino-rush
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
main: Main.hs
source-dirs: executable
tests:
dino-rush-tests:
dependencies:
- base
- dino-rush
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
main: Main.hs
source-dirs: tests