-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
77 lines (77 loc) · 1.79 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
name: hlabyrinth
version: '0.3.0.0'
category: Game
author: Kilian Kilger
maintainer: [email protected]
license: GPL-3
extra-source-files:
- ChangeLog.md
- package.yaml
default-extensions:
- MonoLocalBinds
other-extensions:
- MultiParamTypeClasses
- FlexibleInstances
- FunctionalDependencies
- TemplateHaskell
dependencies:
- base >= 4 && <5
- directory >=1.3 && <1.4
- filepath >=1.4 && <2
- optparse-applicative >=0.15.0 && <0.17
- haskell-gi-base >= 0.24.0 && <0.25
- gi-gtk >=3.0.36 && <4
- gi-pango >= 1.0.23 && <1.1
- gi-cairo >= 1.0.24 && <1.1
- gi-glib >= 2.0.24 && <2.1
- gi-gdk >= 3.0.23 && <4
- gi-pangocairo >= 1.0.24 && <1.1
- gi-cairo-render == 0.1.*
- gi-cairo-connector == 0.1.*
- text >=1.2.2.1 && <1.3
- mtl >=2.2.1 && <2.3
- array >=0.5.1 && <0.6
- stm >=2.5.0.0 && <2.6.0.0
- transformers >=0.5.2 && <0.6
- errors >=2.3 && <2.4
- mmorph >= 1.0.9 && <1.2
- search-algorithms >=0.3 && <0.4
- pureMD5 >= 2.1 && <2.2
- bytestring >=0.10 && <0.11
- cereal >= 0.5.5.0 && <0.6
- safecopy >=0.9.4.1 && <1
- hxt-unicode >=9.0 && <9.1-rtsopts
executables:
hlabyrinth:
main: Main.hs
source-dirs: src
when:
- condition: flag(llvm)
ghc-options:
- -fllvm
- condition: flag(threaded)
ghc-options:
- -threaded
- condition: flag(optimize)
ghc-options:
- -O2
- condition: flag(debug)
ghc-options:
- -debug
flags:
llvm:
description: Build with llvm backend
manual: true
default: false
threaded:
description: Build with threaded ghc runtime
manual: true
default: true
optimize:
description: Build with optimizations enabled
manual: true
default: true
debug:
description: Use debug runtime for ghc
manual: true
default: false