2015-11-19 18:31:06 +01:00
|
|
|
Name: tazblog
|
2019-08-20 01:17:23 +02:00
|
|
|
Version: 6.0.0
|
2012-03-13 19:50:13 +01:00
|
|
|
Synopsis: Tazjin's Blog
|
2014-03-19 12:21:43 +01:00
|
|
|
License: MIT
|
2012-03-13 19:50:13 +01:00
|
|
|
Author: Vincent Ambo
|
2019-08-20 01:17:23 +02:00
|
|
|
Maintainer: mail@tazj.in
|
2012-03-13 19:50:13 +01:00
|
|
|
Category: Web blog
|
|
|
|
Build-type: Simple
|
2015-11-19 18:31:06 +01:00
|
|
|
cabal-version: >= 1.10
|
2012-03-13 19:50:13 +01:00
|
|
|
|
2015-11-19 18:31:06 +01:00
|
|
|
library
|
2012-03-13 19:50:13 +01:00
|
|
|
hs-source-dirs: src
|
2015-11-20 01:53:38 +01:00
|
|
|
default-language: Haskell2010
|
2015-11-21 03:04:43 +01:00
|
|
|
ghc-options: -W
|
2019-08-20 01:17:23 +02:00
|
|
|
exposed-modules: Blog, BlogStore, Locales, Server, RSS
|
2015-11-19 18:31:06 +01:00
|
|
|
build-depends: base,
|
2015-11-19 16:21:15 +01:00
|
|
|
bytestring,
|
|
|
|
happstack-server,
|
|
|
|
text,
|
|
|
|
blaze-html,
|
|
|
|
blaze-markup,
|
2019-08-20 08:09:16 +02:00
|
|
|
cache,
|
2019-08-21 12:07:09 +02:00
|
|
|
dns,
|
2015-11-19 16:21:15 +01:00
|
|
|
crypto-api,
|
|
|
|
cryptohash,
|
|
|
|
old-locale,
|
|
|
|
time,
|
|
|
|
base64-bytestring,
|
|
|
|
mtl,
|
|
|
|
transformers,
|
|
|
|
network,
|
|
|
|
network-uri,
|
|
|
|
rss,
|
|
|
|
hamlet,
|
|
|
|
shakespeare,
|
|
|
|
markdown
|
2015-11-19 18:31:06 +01:00
|
|
|
default-extensions:
|
2015-11-19 16:21:15 +01:00
|
|
|
DeriveDataTypeable
|
|
|
|
FlexibleContexts
|
|
|
|
GeneralizedNewtypeDeriving
|
|
|
|
MultiParamTypeClasses
|
|
|
|
OverloadedStrings
|
|
|
|
RecordWildCards
|
|
|
|
ScopedTypeVariables
|
|
|
|
TemplateHaskell
|
|
|
|
TypeFamilies
|
|
|
|
QuasiQuotes
|
2015-11-19 18:31:06 +01:00
|
|
|
|
|
|
|
executable tazblog
|
|
|
|
hs-source-dirs: blog
|
|
|
|
main-is: Main.hs
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
|
|
build-depends: base,
|
2015-11-19 19:04:21 +01:00
|
|
|
tazblog,
|
|
|
|
options,
|
|
|
|
network
|