tvl-depot/services/tazblog/tazblog.cabal
Vincent Ambo 11fcf62297 chore(tazblog): Replace BlogDB with stubs for DNS-based storage
Removes acid-state specific code and the former BlogDB module, in its
stead the new BlogStorage module contains stubs for the functions that
will be filled in with DNS-based storage.

This code is unformatted and will not currently serve a working blog.
2019-08-20 00:17:23 +01:00

55 lines
1.5 KiB
Text

Name: tazblog
Version: 6.0.0
Synopsis: Tazjin's Blog
License: MIT
Author: Vincent Ambo
Maintainer: mail@tazj.in
Category: Web blog
Build-type: Simple
cabal-version: >= 1.10
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -W
exposed-modules: Blog, BlogStore, Locales, Server, RSS
build-depends: base,
bytestring,
happstack-server,
text,
blaze-html,
blaze-markup,
crypto-api,
cryptohash,
old-locale,
time,
base64-bytestring,
mtl,
transformers,
network,
network-uri,
rss,
hamlet,
shakespeare,
markdown
default-extensions:
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,
tazblog,
options,
network