-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.yaml
More file actions
59 lines (56 loc) · 851 Bytes
/
package.yaml
File metadata and controls
59 lines (56 loc) · 851 Bytes
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
name: hell
version: 666.20251111
license: BSD3
author: "Chris Done"
copyright: "2023 Chris Done"
synopsis: "Haskell-based shell scripting language"
dependencies:
- base >=4.17.2.1 && <4.22
- haskell-src-exts
- ghc-prim
- containers
- text
- bytestring
- async
- criterion-measurement
- criterion
- mtl
- directory
- syb
- constraints
- typed-process
- optparse-applicative
- hspec
- QuickCheck
- template-haskell
- unliftio
- vector
- lucid2
- th-lift
- th-orphans
- aeson
- temporary
- these
- time
- warp
- wai
- http-types
- case-insensitive
ghc-options:
- -Wall
- -Wno-missing-pattern-synonym-signatures
- -O2
executables:
hell:
main: src/Hell.hs
ghc-options:
- -threaded
- -rtsopts
tests:
hell-test:
main: src/Hell.hs
ghc-options:
- -main-is
- Main.specMain
- -threaded
- -rtsopts