hakyll/hakyll.cabal

219 lines
5.9 KiB
Text
Raw Normal View History

2011-05-29 08:45:46 +00:00
Name: hakyll
2012-09-24 08:37:33 +00:00
Version: 3.5.0.0
2011-05-29 08:45:46 +00:00
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>
2011-05-29 08:45:46 +00:00
Homepage: http://jaspervdj.be/hakyll
Bug-Reports: http://github.com/jaspervdj/Hakyll/issues
License: BSD3
License-File: LICENSE
Category: Web
2011-05-29 08:45:46 +00:00
2012-03-18 09:51:12 +00:00
Cabal-Version: >= 1.8
2011-05-29 08:45:46 +00:00
Build-Type: Simple
Data-Dir: data
Data-Files:
templates/atom.xml
templates/atom-item.xml
templates/rss.xml
templates/rss-item.xml
Source-Repository head
Type: git
Location: git://github.com/jaspervdj/hakyll.git
Flag previewServer
Description: Include the preview server
2012-05-17 09:46:23 +00:00
Default: True
Flag unixFilter
Description: Include the UnixFilter module
Default: True
2011-05-29 08:45:46 +00:00
Library
Ghc-Options: -Wall
Ghc-Prof-Options: -auto-all -caf-all
2011-05-29 08:45:46 +00:00
Hs-Source-Dirs: src
Build-Depends:
2012-05-18 15:17:51 +00:00
base >= 4 && < 5,
2012-10-29 13:23:55 +00:00
binary >= 0.5 && < 0.7,
2012-05-18 15:17:51 +00:00
blaze-html >= 0.5 && < 0.6,
2012-04-23 13:14:01 +00:00
blaze-markup >= 0.5.1 && < 0.6,
bytestring >= 0.9 && < 0.11,
2012-05-18 15:17:51 +00:00
citeproc-hs >= 0.3.2 && < 0.4,
2012-07-13 10:07:49 +00:00
containers >= 0.3 && < 0.6,
2012-05-18 15:17:51 +00:00
cryptohash >= 0.7 && < 0.8,
directory >= 1.0 && < 1.3,
2012-05-18 15:17:51 +00:00
filepath >= 1.0 && < 1.4,
2012-08-10 00:38:31 +00:00
hamlet >= 1.0 && < 1.2,
2012-09-15 12:10:49 +00:00
lrucache >= 1.1.1 && < 1.2,
2012-05-18 15:17:51 +00:00
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,
2012-09-15 12:10:49 +00:00
time >= 1.1 && < 1.5
2011-05-29 08:45:46 +00:00
Exposed-Modules:
Hakyll
Hakyll.Core.CompiledItem
Hakyll.Core.Compiler
2011-05-29 08:45:46 +00:00
Hakyll.Core.Configuration
Hakyll.Core.DependencyAnalyzer
Hakyll.Core.DirectedGraph
Hakyll.Core.DirectedGraph.Dot
Hakyll.Core.Identifier
2011-05-29 08:45:46 +00:00
Hakyll.Core.Identifier.Pattern
Hakyll.Core.Logger
2012-11-09 15:34:45 +00:00
Hakyll.Core.Metadata
Hakyll.Core.ResourceProvider
Hakyll.Core.Routes
Hakyll.Core.Rules
2011-05-29 08:45:46 +00:00
Hakyll.Core.Run
Hakyll.Core.Store
Hakyll.Core.Util.Arrow
Hakyll.Core.Util.File
Hakyll.Core.Util.String
2011-05-29 08:45:46 +00:00
Hakyll.Core.Writable
Hakyll.Core.Writable.CopyFile
Hakyll.Core.Writable.WritableTuple
Hakyll.Main
Hakyll.Web.Blaze
Hakyll.Web.CompressCss
Hakyll.Web.Feed
Hakyll.Web.Page
Hakyll.Web.Page.List
Hakyll.Web.Page.Metadata
Hakyll.Web.Page.Read
Hakyll.Web.Pandoc
2011-11-21 19:27:35 +00:00
Hakyll.Web.Pandoc.Biblio
Hakyll.Web.Pandoc.FileType
Hakyll.Web.Tags
Hakyll.Web.Template
Hakyll.Web.Template.Read
2011-09-06 20:26:07 +00:00
Hakyll.Web.Urls
Hakyll.Web.Urls.Relativize
Hakyll.Web.Util.Html
2011-05-29 08:45:46 +00:00
Other-Modules:
Hakyll.Core.Compiler.Internal
Hakyll.Core.DirectedGraph.Internal
2012-11-09 15:34:45 +00:00
Hakyll.Core.ResourceProvider.Internal
Hakyll.Core.ResourceProvider.Metadata
Hakyll.Core.ResourceProvider.MetadataCache
Hakyll.Core.ResourceProvider.Modified
2011-05-29 08:45:46 +00:00
Hakyll.Core.Rules.Internal
Hakyll.Web.Page.Internal
Hakyll.Web.Template.Internal
Hakyll.Web.Template.Read.Hakyll
Hakyll.Web.Template.Read.Hamlet
Paths_hakyll
If flag(previewServer)
Build-depends:
2012-09-24 06:31:05 +00:00
snap-core >= 0.6 && < 0.10,
snap-server >= 0.6 && < 0.10
2012-05-17 09:46:23 +00:00
Cpp-options:
-DPREVIEW_SERVER
2012-05-17 09:46:23 +00:00
Other-modules:
Hakyll.Web.Preview.Poll
Hakyll.Web.Preview.Server
2012-05-17 09:46:23 +00:00
If flag(unixFilter)
Build-depends:
2012-09-24 06:31:05 +00:00
unix >= 2.4 && < 2.7
2012-05-17 09:46:23 +00:00
Cpp-options:
-DUNIX_FILTER
Other-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,
2012-10-22 00:13:06 +00:00
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:
2012-05-18 15:17:51 +00:00
base >= 4 && < 5,
2012-10-29 13:23:55 +00:00
binary >= 0.5 && < 0.7,
2012-05-18 15:17:51 +00:00
blaze-html >= 0.5 && < 0.6,
blaze-markup >= 0.5.1 && < 0.6,
2012-09-15 12:10:49 +00:00
bytestring >= 0.9 && < 0.11,
2012-05-18 15:17:51 +00:00
citeproc-hs >= 0.3.2 && < 0.4,
2012-07-13 10:07:49 +00:00
containers >= 0.3 && < 0.6,
2012-05-18 15:17:51 +00:00
cryptohash >= 0.7 && < 0.8,
2012-09-15 12:10:49 +00:00
directory >= 1.0 && < 1.3,
2012-05-18 15:17:51 +00:00
filepath >= 1.0 && < 1.4,
2012-08-10 00:38:31 +00:00
hamlet >= 1.0 && < 1.2,
2012-09-15 12:10:49 +00:00
lrucache >= 1.1.1 && < 1.2,
2012-05-18 15:17:51 +00:00
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,
2012-09-24 06:31:05 +00:00
unix >= 2.4 && < 2.7
Other-modules:
Hakyll.Web.Util.Html.Tests
Hakyll.Web.Urls.Relativize.Tests
Hakyll.Web.Urls.Tests
Hakyll.Web.Template.Tests
Hakyll.Web.Page.Metadata.Tests
Hakyll.Web.Page.Tests
Hakyll.Core.Compiler.Tests
Hakyll.Core.Identifier.Tests
Hakyll.Core.Util.Arrow.Tests
Hakyll.Core.Util.String.Tests
Hakyll.Core.UnixFilter.Tests
Hakyll.Core.Routes.Tests
Hakyll.Core.Store.Tests
Hakyll.Core.Rules.Tests
Hakyll.Core.DependencyAnalyzer.Tests
TestSuite.Util