summaryrefslogtreecommitdiff
path: root/hakyll.cabal
blob: a4bbe1893909f475b0e728985f864036eb6c29a1 (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
Name:    hakyll
Version: 4.0.0.0

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.

Author:       Jasper Van der Jeugt <m@jaspervdj.be>
Maintainer:   Jasper Van der Jeugt <m@jaspervdj.be>
Homepage:     http://jaspervdj.be/hakyll
Bug-Reports:  http://github.com/jaspervdj/Hakyll/issues
License:      BSD3
License-File: LICENSE
Category:     Web

Cabal-Version: >= 1.8
Build-Type:    Simple
Data-Dir:      data

Data-files:
  example/posts/2012-11-28-carpe-diem.markdown
  example/posts/2012-10-07-rosa-rosa-rosam.markdown
  example/posts/2012-12-07-tu-quoque.markdown
  example/posts/2012-08-12-spqr.markdown
  example/site.hs
  example/images/haskell-logo.png
  example/templates/post-item.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
  templates/atom-item.xml
  templates/atom.xml
  templates/rss-item.xml
  templates/rss.xml

Extra-source-files:
  tests/data/example.md
  tests/data/example.md.metadata
  tests/data/template.html
  tests/data/template.html.out

Source-Repository head
  Type:     git
  Location: git://github.com/jaspervdj/hakyll.git

Flag previewServer
  Description: Include the preview server
  Default:     True

Flag unixFilter
  Description: Include the UnixFilter module
  Default:     True

Library
  Ghc-Options:    -Wall
  Ghc-Prof-Options: -auto-all -caf-all
  Hs-Source-Dirs: src

  Build-Depends:
    base         >= 4      && < 5,
    binary       >= 0.5    && < 0.7,
    blaze-html   >= 0.5    && < 0.6,
    blaze-markup >= 0.5.1  && < 0.6,
    bytestring   >= 0.9    && < 0.11,
    citeproc-hs  >= 0.3.2  && < 0.4,
    containers   >= 0.3    && < 0.6,
    cryptohash   >= 0.7    && < 0.8,
    deepseq      >= 1.3    && < 1.4,
    directory    >= 1.0    && < 1.3,
    filepath     >= 1.0    && < 1.4,
    lrucache     >= 1.1.1  && < 1.2,
    mtl          >= 1      && < 2.2,
    old-locale   >= 1.0    && < 1.1,
    old-time     >= 1.0    && < 1.2,
    pandoc       >= 1.9.3  && < 1.10,
    parsec       >= 3.0    && < 3.2,
    process      >= 1.0    && < 1.2,
    regex-base   >= 0.93   && < 0.94,
    regex-tdfa   >= 1.1    && < 1.2,
    tagsoup      >= 0.12.6 && < 0.13,
    text         >= 0.11   && < 1.12,
    time         >= 1.1    && < 1.5

  Exposed-Modules:
    Hakyll
    Hakyll.Core.Compiler
    Hakyll.Core.Configuration
    Hakyll.Core.Dependencies
    Hakyll.Core.Identifier
    Hakyll.Core.Identifier.Pattern
    Hakyll.Core.Item
    Hakyll.Core.Metadata
    Hakyll.Core.Routes
    Hakyll.Core.Rules
    Hakyll.Core.Util.String
    Hakyll.Core.Writable
    Hakyll.Core.Writable.CopyFile
    Hakyll.Main
    Hakyll.Web.CompressCss
    Hakyll.Web.Feed
    Hakyll.Web.Page
    Hakyll.Web.Pandoc
    Hakyll.Web.Pandoc.Biblio
    Hakyll.Web.Pandoc.FileType
    Hakyll.Web.Tags
    Hakyll.Web.Template
    Hakyll.Web.Template.Context
    Hakyll.Web.Template.List
    Hakyll.Web.Template.Read
    Hakyll.Web.Urls
    Hakyll.Web.Urls.Relativize
    Hakyll.Web.Util.Html

  Other-Modules:
    Hakyll.Core.Compiler.Internal
    Hakyll.Core.Compiler.Require
    Hakyll.Core.Item.SomeItem
    Hakyll.Core.Logger
    Hakyll.Core.Provider
    Hakyll.Core.Provider.Internal
    Hakyll.Core.Provider.Metadata
    Hakyll.Core.Provider.MetadataCache
    Hakyll.Core.Provider.Modified
    Hakyll.Core.Rules.Internal
    Hakyll.Core.Runtime
    Hakyll.Core.Store
    Hakyll.Core.Util.File
    Hakyll.Web.Template.Internal
    Paths_hakyll

  If flag(previewServer)
    Build-depends:
      snap-core   >= 0.6 && < 0.10,
      snap-server >= 0.6 && < 0.10
    Cpp-options:
      -DPREVIEW_SERVER
    Other-modules:
      Hakyll.Web.Preview.Poll
      Hakyll.Web.Preview.Server

  If flag(unixFilter)
    Build-depends:
      unix >= 2.4 && < 2.7
    Cpp-options:
      -DUNIX_FILTER
    Exposed-modules:
      Hakyll.Core.UnixFilter

Test-suite hakyll-tests
  Type:           exitcode-stdio-1.0
  Hs-source-dirs: src tests
  Main-is:        TestSuite.hs
  Ghc-options:    -Wall

  Build-Depends:
    HUnit                      >= 1.2 && < 1.3,
    QuickCheck                 >= 2.4 && < 2.6,
    test-framework             >= 0.4 && < 0.7,
    test-framework-hunit       >= 0.2 && < 0.3,
    test-framework-quickcheck2 >= 0.2 && < 0.3,
    -- Copy pasted from hakyll dependencies:
    base         >= 4      && < 5,
    binary       >= 0.5    && < 0.7,
    blaze-html   >= 0.5    && < 0.6,
    blaze-markup >= 0.5.1  && < 0.6,
    bytestring   >= 0.9    && < 0.11,
    citeproc-hs  >= 0.3.2  && < 0.4,
    containers   >= 0.3    && < 0.6,
    cryptohash   >= 0.7    && < 0.8,
    deepseq      >= 1.3    && < 1.4,
    directory    >= 1.0    && < 1.3,
    filepath     >= 1.0    && < 1.4,
    lrucache     >= 1.1.1  && < 1.2,
    mtl          >= 1      && < 2.2,
    old-locale   >= 1.0    && < 1.1,
    old-time     >= 1.0    && < 1.2,
    pandoc       >= 1.9.3  && < 1.10,
    parsec       >= 3.0    && < 3.2,
    process      >= 1.0    && < 1.2,
    regex-base   >= 0.93   && < 0.94,
    regex-tdfa   >= 1.1    && < 1.2,
    tagsoup      >= 0.12.6 && < 0.13,
    text         >= 0.11   && < 1.12,
    time         >= 1.1    && < 1.5,
    unix         >= 2.4    && < 2.7

  Other-modules:
    Hakyll.Core.Dependencies.Tests
    Hakyll.Core.Identifier.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.Template.Context.Tests
    Hakyll.Web.Template.Tests
    Hakyll.Web.Urls.Tests
    Hakyll.Web.Urls.Relativize.Tests
    Hakyll.Web.Util.Html.Tests
    TestSuite.Util

Executable hakyll-init
  Ghc-options:    -Wall
  Hs-source-dirs: src
  Main-is:        Hakyll/Init.hs

  Build-depends:
    base      >= 4   && < 5,
    directory >= 1.0 && < 1.3,
    filepath  >= 1.0 && < 1.4