tvl-depot/tazblog.cabal

71 lines
1.9 KiB
Text
Raw Normal View History

Name: tazblog
Version: 5.0-beta
Synopsis: Tazjin's Blog
2014-03-19 12:21:43 +01:00
License: MIT
License-file: LICENSE
Author: Vincent Ambo
Maintainer: tazjin@gmail.com
Category: Web blog
Build-type: Simple
cabal-version: >= 1.10
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Blog, BlogDB, Locales, Server, RSS
build-depends: base,
2015-11-19 16:21:15 +01:00
bytestring,
happstack-server,
text,
blaze-html,
blaze-markup,
crypto-api,
cryptohash,
old-locale,
time,
base64-bytestring,
acid-state,
ixset,
safecopy,
mtl,
transformers,
network,
network-uri,
rss,
hamlet,
shakespeare,
markdown
default-extensions:
2015-11-19 16:21:15 +01:00
DeriveDataTypeable
FlexibleContexts
GeneralizedNewtypeDeriving
MultiParamTypeClasses
OverloadedStrings
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
QuasiQuotes
executable tazblog
hs-source-dirs: blog
main-is: Main.hs
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base,
acid-state,
tazblog,
options,
network
2015-11-19 19:04:21 +01:00
executable tazblog-db
hs-source-dirs: db
main-is: Main.hs
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base,
acid-state,
tazblog,
options,
network