-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.yaml
112 lines (105 loc) · 2.11 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
name: hyperion
version: '0.1.0.10'
author: David Simmons-Duffin
maintainer: [email protected]
license: MIT
language: GHC2021
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -O2 -Wunused-packages
flags:
use-external-hostname:
default: false
manual: true
library:
source-dirs: src
when:
- condition: (flag(use-external-hostname))
cpp-options: -DUSE_EXTERNAL_HOSTNAME
dependencies:
- base
- process
- time
- random
- filepath
- attoparsec
- bytestring
- mtl
- text
- distributed-static
- distributed-process
- distributed-process-async
- network-transport
- network-transport-tcp
- network
- network-bsd
- network-info
- unix
- binary
- transformers
- stm
- directory
- aeson
- containers
- pretty-show
- pretty
- exceptions
- lens
- extra
- concurrent-output
- shell-escape
- rank1dynamic
- sqlite-simple
- resource-pool
- transformers-base
- optparse-applicative
- servant-server
- wai
- warp
- mime-mail
- binaryhash
- async
- constraints
- hyperion-static
- vector
- rusage
executables:
example-hello-world:
source-dirs: example/src-hello-world
main: Main.hs
dependencies:
- base
- hyperion
- optparse-applicative
- text
ghc-options : -threaded
example-lock-map:
source-dirs: example/src-lock-map
main: Main.hs
dependencies:
- base
- hyperion
- optparse-applicative
- distributed-process
- mtl
- text
ghc-options : -threaded
example-polymorphic-remote:
source-dirs: example/src-polymorphic-remote
main: Main.hs
dependencies:
- base
- hyperion
- text
- binary
- containers
- hyperion-static
ghc-options : -threaded
example-root-search:
source-dirs: example/src-root-search
main: Main.hs
dependencies:
- base
- hyperion
- optparse-applicative
- filepath
- mtl
ghc-options : -threaded