-
Notifications
You must be signed in to change notification settings - Fork 24
/
funblog.cabal
74 lines (72 loc) · 2.65 KB
/
funblog.cabal
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
71
72
73
74
name: funblog
version: 0.4.1.0
synopsis: Blog written in Haskell
description: A simple yet powerfull blog software
homepage: https://github.com/agrafix/funblog
license: Apache-2.0
license-file: LICENSE
author: Alexander Thiemann <[email protected]>
maintainer: Alexander Thiemann <[email protected]>
copyright: (c) 2014 - 2016 Alexander Thiemann
category: Web
build-type: Simple
cabal-version: >=1.10
tested-with: GHC==7.10.2
extra-source-files:
README.md
static/css/blog.css
static/css/bootstrap-theme.min.css
static/css/bootstrap.min.css
static/fonts/glyphicons-halflings-regular.eot
static/fonts/glyphicons-halflings-regular.svg
static/fonts/glyphicons-halflings-regular.ttf
static/fonts/glyphicons-halflings-regular.woff
static/js/bootstrap.min.js
executable funblog
main-is: Bootstrap.hs
other-modules:
Model.CoreTypes
Model.ResponseTypes
Web.Actions.User
Web.Blog
Web.Forms.Common
Web.Forms.Login
Web.Forms.Post
Web.Forms.Register
Web.Utils
Web.Views.Home
Web.Views.Site
build-depends:
Spock >=0.11,
Spock-digestive >=0.3,
aeson >=0.8,
base >= 4 && < 5,
base16-bytestring >=0.1,
blaze-bootstrap >=0.1,
blaze-html >=0.7,
bytestring >=0.10,
configurator >=0.3,
cryptohash >=0.11,
digestive-bootstrap >=0.1,
digestive-functors >=0.7,
http-types >=0.8,
hvect >=0.3,
monad-logger >=0.3,
mtl >=2.2,
persistent >=2.1,
persistent-sqlite >=2.1,
persistent-template >=2.1,
random,
resourcet,
stm,
text >=1.2,
time >=1.4,
unordered-containers,
wai-middleware-static >=0.6,
word8
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
source-repository head
type: git
location: https://github.com/agrafix/funblog