hakyll/hakyll.cabal

106 lines
3.8 KiB
Text
Raw Normal View History

2010-03-06 14:39:45 +00:00
Name: hakyll
2011-02-23 09:11:55 +00:00
Version: 3.0.0.0
2009-12-02 12:49:42 +00:00
2010-03-06 14:39:45 +00:00
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
2010-03-08 20:42:56 +00:00
Data-Files: templates/atom.xml
templates/atom-item.xml
templates/rss.xml
2010-03-06 14:39:45 +00:00
templates/rss-item.xml
2009-12-02 12:49:42 +00:00
2010-03-06 14:39:45 +00:00
build-type: Simple
2009-12-02 12:49:42 +00:00
source-repository head
2010-03-06 14:39:45 +00:00
type: git
location: git://github.com/jaspervdj/Hakyll.git
2011-02-23 09:11:55 +00:00
flag inotify
description: Use the inotify bindings for the preview server. Better, but
only works on Linux.
default: False
2009-12-02 12:49:42 +00:00
library
2010-03-06 14:39:45 +00:00
ghc-options: -Wall
hs-source-dirs: src
2011-02-23 09:11:55 +00:00
if flag(inotify)
hs-source-dirs: src-inotify
else
hs-source-dirs: src-interval
2010-03-06 14:39:45 +00:00
build-depends: base >= 4 && < 5,
2010-07-29 09:32:22 +00:00
filepath == 1.*,
directory == 1.*,
containers == 0.*,
pandoc == 1.*,
regex-base >= 0.93,
2011-02-11 07:39:10 +00:00
regex-pcre >= 0.93,
2010-11-15 17:09:44 +00:00
mtl >= 1,
2010-07-29 09:32:22 +00:00
old-locale == 1.*,
old-time == 1.*,
2010-09-20 10:56:34 +00:00
time >= 1.1,
2010-08-05 16:41:15 +00:00
binary >= 0.5,
2011-02-11 07:39:10 +00:00
hamlet >= 0.7,
blaze-html >= 0.4,
snap-server >= 0.4,
snap-core >= 0.4,
bytestring >= 0.9,
utf8-string >= 0.3,
hinotify >= 0.3,
tagsoup >= 0.12,
2011-02-23 09:11:55 +00:00
hopenssl >= 1.4,
unix >= 2.4,
strict-concurrency >= 0.2
2011-02-11 07:39:10 +00:00
exposed-modules: Hakyll
Hakyll.Main
Hakyll.Web.Util.String
Hakyll.Web.Preview.Server
2011-02-23 09:11:55 +00:00
Hakyll.Web.Preview.Poll
2011-02-11 07:39:10 +00:00
Hakyll.Web.CompressCss
Hakyll.Web.Template
Hakyll.Web.Feed
Hakyll.Web.Tags
Hakyll.Web.Pandoc
Hakyll.Web.FileType
Hakyll.Web.Page
Hakyll.Web.Template.Read
Hakyll.Web.RelativizeUrls
Hakyll.Web.Page.Read
Hakyll.Web.Page.Metadata
Hakyll.Core.ResourceProvider.FileResourceProvider
Hakyll.Core.Configuration
Hakyll.Core.Identifier.Pattern
2011-02-23 09:11:55 +00:00
Hakyll.Core.UnixFilter
2011-02-11 07:39:10 +00:00
Hakyll.Core.Util.Arrow
Hakyll.Core.Util.File
Hakyll.Core.ResourceProvider
Hakyll.Core.CompiledItem
Hakyll.Core.Compiler
Hakyll.Core.Run
Hakyll.Core.Store
Hakyll.Core.Writable
Hakyll.Core.Identifier
Hakyll.Core.DirectedGraph.Dot
Hakyll.Core.DirectedGraph.DependencySolver
Hakyll.Core.DirectedGraph
Hakyll.Core.Rules
Hakyll.Core.Routes
other-modules: Paths_hakyll
2011-02-11 07:39:10 +00:00
Hakyll.Web.Template.Read.Hakyll
Hakyll.Web.Template.Read.Hamlet
Hakyll.Web.Template.Internal
Hakyll.Web.Page.Internal
Hakyll.Core.Compiler.Internal
Hakyll.Core.DirectedGraph.Internal
2011-02-11 12:30:55 +00:00
Hakyll.Core.Rules.Internal