-
Notifications
You must be signed in to change notification settings - Fork 1
/
tech-blog.cabal
93 lines (84 loc) · 3.09 KB
/
tech-blog.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
cabal-version: 2.0
name: tech-blog
version: 0.0.0
synopsis: Blog for Holmusk Tech Team
description: Blog for Holmusk Tech Team
homepage: https://github.com/Holmusk/tech-blog
bug-reports: https://github.com/Holmusk/tech-blog/issues
license: MPL-2.0
license-file: LICENSE
author: Holmusk
maintainer: [email protected]
copyright: 2019 Holmusk
category: Web, Blog
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
tested-with: GHC == 8.10.7
source-repository head
type: git
location: https://github.com/Holmusk/tech-blog.git
library
hs-source-dirs: src
exposed-modules: TechBlog
TechBlog.Blog
TechBlog.Context
TechBlog.Project
Prelude
build-depends: base-noprelude ^>= 4.14.3.0
, hakyll ^>= 4.15
, hakyll-sass
, pandoc
, relude
, text
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
default-language: Haskell2010
default-extensions: ConstraintKinds
DeriveGeneric
GeneralizedNewtypeDeriving
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns
executable site
hs-source-dirs: app
main-is: Main.hs
build-depends: base-noprelude ^>= 4.14.3.0
, tech-blog
, relude
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
default-language: Haskell2010
default-extensions: ConstraintKinds
DeriveGeneric
GeneralizedNewtypeDeriving
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns