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

Synopsis:           A simple static site generator library.
Description:        A simple static site generator library, mainly aimed at
                    creating blogs and brochure sites.
Author:             Jasper Van der Jeugt
Maintainer:         jaspervdj@gmail.com
Homepage:           http://jaspervdj.be/hakyll
Bug-Reports:        http://github.com/jaspervdj/Hakyll/issues
License:            BSD3
License-File:       LICENSE
Category:           Text
Cabal-Version:      >= 1.6
Data-Dir:           data
Data-Files:         templates/atom.xml
                    templates/atom-item.xml
                    templates/rss.xml
                    templates/rss-item.xml

build-type:         Simple

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

library
  ghc-options:      -Wall
  hs-source-dirs:   src
  build-depends:    base >= 4 && < 5,
                    filepath >= 1.1,
                    directory >= 1,
                    containers >= 0.1,
                    pandoc >= 1,
                    regex-base >= 0.83,
                    regex-tdfa >= 0.92,
                    network >= 2,
                    mtl >= 1.1,
                    old-locale >= 1,
                    old-time >= 1,
                    time >= 1,
                    binary >= 0.5
  exposed-modules:  Network.Hakyll.SimpleServer
                    Text.Hakyll
                    Text.Hakyll.Context
                    Text.Hakyll.ContextManipulations
                    Text.Hakyll.CreateContext
                    Text.Hakyll.File
                    Text.Hakyll.HakyllMonad
                    Text.Hakyll.Regex
                    Text.Hakyll.Render
                    Text.Hakyll.HakyllAction
                    Text.Hakyll.Paginate
                    Text.Hakyll.Util
                    Text.Hakyll.Tags
                    Text.Hakyll.Feed
  other-modules:    Paths_hakyll
                    Text.Hakyll.Internal.Cache
                    Text.Hakyll.Internal.CompressCss
                    Text.Hakyll.Internal.FileType
                    Text.Hakyll.Internal.Page
                    Text.Hakyll.Internal.Template