about summary refs log tree commit diff
path: root/services/tazblog/tazblog.cabal
blob: 4e784f49b1b50f7574c51b9cd3169e32896a98c9 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Name:                tazblog
Version:             5.1.3
Synopsis:            Tazjin's Blog
License:             MIT
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
  ghc-options: -W
  exposed-modules: Blog, BlogDB, Locales, Server, RSS
  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,
                 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,
                 acid-state,
                 tazblog,
                 options,
                 network

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