about summary refs log tree commit diff
path: root/TazBlog.cabal
blob: f3daba16f71273334a1cd0ab5e98fdf49fb55137 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Name:                TazBlog
Version:             4.2
Synopsis:            Tazjin's Blog
License:             MIT
License-file:        LICENSE
Author:              Vincent Ambo
Maintainer:          tazjin@gmail.com
Category:            Web blog
Build-type:          Simple
cabal-version:       >= 1.2


Executable tazblog
  hs-source-dirs: src
  main-is: Main.hs
  ghc-options: -O2
  Build-depends: base,
                 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,
                 options,
                 rss,
                 hamlet,
                 shakespeare,
                 markdown
  extensions:
             DeriveDataTypeable
             FlexibleContexts
             GeneralizedNewtypeDeriving
             MultiParamTypeClasses
             OverloadedStrings
             RecordWildCards
             ScopedTypeVariables
             TemplateHaskell
             TypeFamilies
             QuasiQuotes