-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
108 lines (103 loc) · 1.96 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
name: bore
version: 0.22.0.0
synopsis: Build gopherholes.
description: |
Static site builder, but for gopherholes. Manage phlogs with tags, use the Markdown renderer and Mustache templating system.
homepage: https://github.com/someodd/bore
bug-reports: https://github.com/someodd/bore/issues
license: GPL-3.0-only
license-file: LICENSE
author: someodd
maintainer: [email protected]
category: Network
extra-source-files:
- README.md
- CHANGELOG.md
tested-with: GHC==9.6.3
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Werror
dependencies:
- base
- text
- filepath-bytestring
- socket
- systemd
- liquidhaskell
- unix
- fast-logger
- fsnotify
- tomland
- xml-conduit-writer
- parsec
- data-default
- xml-conduit
- word-wrap
- split
- fuzzy-dates
- hourglass
- bytestring
- containers
- mustache
- filepattern
- hashmap
- directory
- unordered-containers
- filepath
- optparse-applicative
- mtl
- commonmark
- frontmatter
- attoparsec
- vector
- time
- hashable
- fuzzy-dates
- hourglass
- raw-strings-qq
- aeson
- network-uri
- neat-interpolation
- yaml
- spacecookie
- edit-distance
library:
source-dirs: src
default-extensions:
- OverloadedStrings
- DeriveGeneric
- DeriveAnyClass
- OverloadedRecordDot
- DuplicateRecordFields
default-language: GHC2021
executables:
bore:
main: Main.hs
source-dirs: app
dependencies:
- bore
autogen-modules:
- Paths_bore
other-modules:
- Paths_bore
default-extensions:
- OverloadedStrings
- DeriveGeneric
- DeriveAnyClass
- OverloadedRecordDot
default-language: GHC2021
tests:
bore-test:
main: Spec.hs
source-dirs: test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
- bore
- QuickCheck
- text
- temporary
- doctest
default-language: GHC2021