-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.cabal
51 lines (48 loc) · 1.35 KB
/
portfolio.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
name: portfolio
version: 0.1.0.0
build-type: Simple
cabal-version: >= 1.10
library
hs-source-dirs: src
exposed-modules: Html.Lib
, Html.Index
, Html.Article
, Html.Blog
, Html.BlogPost
, Site.Pandoc
, Site.Lib
, Site.Images
, Site.Posts
, Site.Blog
, Site.Index
, Site.About
, Site.Works
build-depends: base
, hakyll
, lucid
, directory
, text
, pandoc-types
, pandoc
default-language: Haskell2010
executable site
main-is: app/Site.hs
build-depends: base
, hakyll
, hakyll-sass
, template-haskell
, portfolio
, lucid
, text
, filepath
, process
ghc-options: -threaded
default-language: Haskell2010
executable html
main-is: app/Html.hs
build-depends: base
, portfolio
, optparse-applicative
, process
ghc-options: -threaded
default-language: Haskell2010