summaryrefslogtreecommitdiff
path: root/hakyll.cabal
blob: 74a6c2f29f2ff534fd0e3e8b8142d8a34c260ec4 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
cabal-version: >=1.10
name: hakyll
version: 4.13.3.0
license: BSD3
license-file: LICENSE
maintainer: Jasper Van der Jeugt <m@jaspervdj.be>
author: Jasper Van der Jeugt <m@jaspervdj.be>
homepage: http://jaspervdj.be/hakyll
bug-reports: http://github.com/jaspervdj/Hakyll/issues
synopsis: A static website compiler library
description:
    Hakyll is a static website compiler library. It provides you with the tools to
    create a simple or advanced static website using a Haskell DSL and formats
    such as markdown or RST. You can find more information, including a tutorial,
    on the website:
    .
    * <http://jaspervdj.be/hakyll>
    .
    If you seek assistance, there's:
    .
    * A google group: <http://groups.google.com/group/hakyll>
    .
    * An IRC channel, @#hakyll@ on freenode
    .
    Additionally, there's the Haddock documentation in the different modules,
    meant as a reference.
category: Web
build-type: Simple
data-files:
    example/posts/2015-11-28-carpe-diem.markdown
    example/posts/2015-10-07-rosa-rosa-rosam.markdown
    example/posts/2015-12-07-tu-quoque.markdown
    example/posts/2015-08-12-spqr.markdown
    example/site.hs
    example/images/haskell-logo.png
    example/templates/post-list.html
    example/templates/default.html
    example/templates/archive.html
    example/templates/post.html
    example/css/default.css
    example/index.html
    example/about.rst
    example/contact.markdown
data-dir: data
extra-source-files:
    CHANGELOG.md
    tests/data/embed.html
    tests/data/example.md
    tests/data/example.md.metadata
    tests/data/images/favicon.ico
    tests/data/just-meta.html
    tests/data/just-meta.html.out
    tests/data/partial-helper.html
    tests/data/partial.html
    tests/data/partial.html.out
    tests/data/posts/2010-08-26-birthday.md
    tests/data/posts/2018-09-26.md
    tests/data/posts/2019/05/10/tomorrow.md
    tests/data/russian.md
    tests/data/strip.html
    tests/data/strip.html.out
    tests/data/template.html
    tests/data/template.html.out
    data/templates/atom-item.xml
    data/templates/atom.xml
    data/templates/rss-item.xml
    data/templates/rss.xml

source-repository head
    type: git
    location: git://github.com/jaspervdj/hakyll.git

flag previewserver
    description:
        Include the preview server

flag watchserver
    description:
        Include the watch server

flag checkexternal
    description:
        Include external link checking

flag buildwebsite
    description:
        Build the hakyll website
    default: False
    manual: True

flag usepandoc
    description:
        Include Pandoc support
    manual: True

library
    exposed-modules:
        Hakyll
        Hakyll.Commands
        Hakyll.Core.Compiler
        Hakyll.Core.Compiler.Internal
        Hakyll.Core.Configuration
        Hakyll.Core.Dependencies
        Hakyll.Core.File
        Hakyll.Core.Identifier
        Hakyll.Core.Identifier.Pattern
        Hakyll.Core.Item
        Hakyll.Core.Logger
        Hakyll.Core.Metadata
        Hakyll.Core.Provider
        Hakyll.Core.Provider.Metadata
        Hakyll.Core.Routes
        Hakyll.Core.Rules
        Hakyll.Core.Rules.Internal
        Hakyll.Core.Runtime
        Hakyll.Core.Store
        Hakyll.Core.UnixFilter
        Hakyll.Core.Util.File
        Hakyll.Core.Util.String
        Hakyll.Core.Writable
        Hakyll.Main
        Hakyll.Web.CompressCss
        Hakyll.Web.Feed
        Hakyll.Web.Html
        Hakyll.Web.Html.RelativizeUrls
        Hakyll.Web.Paginate
        Hakyll.Web.Redirect
        Hakyll.Web.Tags
        Hakyll.Web.Template
        Hakyll.Web.Template.Context
        Hakyll.Web.Template.Internal
        Hakyll.Web.Template.Internal.Element
        Hakyll.Web.Template.Internal.Trim
        Hakyll.Web.Template.List
    hs-source-dirs: lib
    other-modules:
        Data.List.Extended
        Data.Yaml.Extended
        Hakyll.Check
        Hakyll.Core.Compiler.Require
        Hakyll.Core.Identifier.Pattern.Internal
        Hakyll.Core.Item.SomeItem
        Hakyll.Core.Provider.Internal
        Hakyll.Core.Provider.MetadataCache
        Hakyll.Core.Util.Parser
        Paths_hakyll
    default-language: Haskell2010
    ghc-options: -Wall
    build-depends:
        base >=4.8 && <5,
        binary >=0.5,
        blaze-html >=0.5,
        blaze-markup >=0.5.1,
        bytestring >=0.9,
        containers >=0.3,
        cryptonite >=0.25,
        data-default >=0.4,
        deepseq >=1.3,
        directory >=1.0,
        file-embed >=0.0.10.1,
        filepath >=1.0,
        lrucache >=1.1.1,
        memory >=0.14.18,
        mtl >=1,
        network-uri >=2.6,
        optparse-applicative >=0.12,
        parsec >=3.0,
        process >=1.6,
        random >=1.0,
        regex-tdfa >=1.1,
        resourcet >=1.1,
        scientific >=0.3.4,
        tagsoup >=0.13.1,
        template-haskell >=2.14,
        text >=0.11,
        time >=1.8,
        time-locale-compat >=0.1,
        unordered-containers >=0.2,
        vector >=0.11,
        yaml >=0.8.11

    if flag(previewserver)
        cpp-options: -DPREVIEW_SERVER
        other-modules:
            Hakyll.Preview.Poll
            Hakyll.Preview.Server
        build-depends:
            wai >=3.2,
            warp >=3.2,
            wai-app-static >=3.1,
            http-types >=0.9,
            fsnotify >=0.2

    if flag(watchserver)
        cpp-options: -DWATCH_SERVER
        other-modules:
            Hakyll.Preview.Poll
        build-depends:
            fsnotify >=0.2

    if flag(checkexternal)
        cpp-options: -DCHECK_EXTERNAL
        build-depends:
            http-conduit >=2.2,
            http-types >=0.7

    if flag(usepandoc)
        exposed-modules:
            Hakyll.Web.Pandoc
            Hakyll.Web.Pandoc.Biblio
            Hakyll.Web.Pandoc.FileType
        cpp-options: -DUSE_PANDOC
        other-modules:
            Hakyll.Web.Pandoc.Binary
        build-depends:
            pandoc >=2.0.5,
            pandoc-citeproc >=0.14,
            pandoc-types

executable hakyll-init
    main-is: Init.hs
    hs-source-dirs: src
    other-modules:
        Paths_hakyll
    default-language: Haskell2010
    ghc-options: -Wall -threaded
    build-depends:
        hakyll -any,
        base >=4 && <5,
        directory >=1.0,
        filepath >=1.0

executable hakyll-website
    main-is: site.hs
    hs-source-dirs: web
    default-language: Haskell2010
    ghc-options: -Wall -threaded
    build-depends:
        hakyll -any,
        base >=4 && <5,
        directory >=1.0,
        filepath >=1.0,
        pandoc >=2.0.5

    if flag(buildwebsite)
    else
        buildable: False

test-suite hakyll-tests
    type: exitcode-stdio-1.0
    main-is: TestSuite.hs
    hs-source-dirs: tests
    other-modules:
        Hakyll.Core.Dependencies.Tests
        Hakyll.Core.Identifier.Tests
        Hakyll.Core.Provider.Metadata.Tests
        Hakyll.Core.Provider.Tests
        Hakyll.Core.Routes.Tests
        Hakyll.Core.Rules.Tests
        Hakyll.Core.Runtime.Tests
        Hakyll.Core.Store.Tests
        Hakyll.Core.UnixFilter.Tests
        Hakyll.Core.Util.String.Tests
        Hakyll.Web.CompressCss.Tests
        Hakyll.Web.Html.RelativizeUrls.Tests
        Hakyll.Web.Html.Tests
        Hakyll.Web.Tags.Tests
        Hakyll.Web.Template.Context.Tests
        Hakyll.Web.Template.Tests
        TestSuite.Util
    default-language: Haskell2010
    ghc-options: -Wall -threaded
    build-depends:
        hakyll -any,
        QuickCheck >=2.8,
        tasty >=0.11,
        tasty-hunit >=0.9,
        tasty-quickcheck >=0.8,
        base >=4.8,
        bytestring >=0.9,
        containers >=0.3,
        filepath >=1.0,
        text >=0.11,
        unordered-containers >=0.2,
        yaml >=0.8.11

    if flag(previewserver)
        cpp-options: -DPREVIEW_SERVER

    if flag(watchserver)
        cpp-options: -DWATCH_SERVER

    if flag(checkexternal)
        cpp-options: -DCHECK_EXTERNAL

    if flag(usepandoc)
        cpp-options: -DUSE_PANDOC
        other-modules:
            Hakyll.Web.Pandoc.FileType.Tests