-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.yaml
More file actions
57 lines (52 loc) · 810 Bytes
/
package.yaml
File metadata and controls
57 lines (52 loc) · 810 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
name: saha
version: '0.2.1'
synopsis: A simple server for static websites with cool URIs
category: Web
author: XT
copyright: Copyright (C) 2015-2021 XT
license: AGPL-3
extra-source-files:
- README.md
- CHANGELOG.md
default-extensions:
- OverloadedStrings
- LambdaCase
ghc-options:
- -O2
- -Wall
- -rtsopts
- -static
- -threaded
- -optl-static
library:
dependencies:
- attoparsec
- base
- bytestring
- cmark
- cmdargs
- directory
- filepath
- http-date
- http-types
- network
- rawfilepath
- text
- time
- unix
- wai
- warp
source-dirs: library
executables:
saha:
dependencies:
- base
- saha
main: Main.hs
source-dirs: executable/saha
saha-server:
dependencies:
- base
- saha
main: Main.hs
source-dirs: executable/saha-server