forked from dtekcth/DtekPortalen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDtekPortalen.cabal
143 lines (132 loc) · 4.82 KB
/
DtekPortalen.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: DtekPortalen
version: 0.0.0
license: BSD3
license-file: LICENSE
author: Arash Rouhani
maintainer: Arash Rouhani
synopsis: Yesod website for Chalmers D students.
description: This site is intenteded for use of computer science students
at Chalmers University, this site relies on a in-place
Kerberos configuration, and a read-by-all mailman mail-lists
category: Web
stability: Experimental
cabal-version: >= 1.6
build-type: Simple
homepage: https://github.com/dtekcth/DtekPortalen
Flag dev
Description: Turn on development settings, like auto-reload templates.
Default: False
Flag library-only
Description: Build for use with "yesod devel"
Default: False
library
if flag(library-only)
Buildable: True
else
Buildable: False
exposed-modules: Application
other-modules: Foundation
Import
Model
Settings
Settings.StaticFiles
Settings.Development
-- Nonscaffolded sitespecific modules
StandardLayout
Scrapers.Einstein
Scrapers.CalendarFeed
Helpers.Post
Helpers.Scraping
-- Model modules
Model.Forening
Model.Persist
Model.Document
Model.Post
Model.User
-- Handler modules
Handler.Root
Handler.Forening
Handler.Posts
Handler.Profile
Handler.Admin
Handler.Document
Handler.Feed
Handler.SmallHandlers
ghc-options: -Wall -threaded -O0
cpp-options: -DDEVELOPMENT
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
OverloadedStrings
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
executable DtekPortalen
if flag(library-only)
Buildable: False
if flag(dev)
cpp-options: -DDEVELOPMENT
ghc-options: -Wall -threaded -O0
else
ghc-options: -Wall -threaded
main-is: main.hs
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
OverloadedStrings
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
build-depends: base >= 4 && < 5
-- yesod-platform will put strict versioning ...
, yesod-platform == 1.1.2
-- ... on the packages below
-- BEGIN yesod-platform regulated packages
, yesod
, yesod-form
, hamlet
, clientsession
, hjsmin
, yaml
, yesod-default
, persistent
, shakespeare-text
, yesod-static
, yesod-auth
, blaze-html
, blaze-markup
, wai-extra
, data-default
, yesod-default
-- END yesod-platform regulated packages
, persistent-postgresql >= 1.0.0
, template-haskell >= 2.2
, text >= 0.11 && < 0.12
, bytestring
, http-conduit
-- Modules for this project
, process >= 1.0 && < 2.0
, split
, tagsoup
, time
, url >= 2.1.2
, timerep >= 1.0.3
, utf8-string >= 0.3.6
, old-locale >= 1.0.0.0
, yesod-newsfeed
, yesod-auth-kerberos >= 1.0 && < 1.1
-- Packages from the yesod-goodies collection below
, yesod-paginator >= 0.3.2
-- shorten-strings might need manual installation
, shorten-strings >= 0.1
, friendly-time >= 0.2.2 && < 0.3
, markdown >= 0.1.1
, yesod-text-markdown >= 0.1