forked from denisshevchenko/ohaskell.guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathohaskell.cabal
51 lines (40 loc) · 1.42 KB
/
ohaskell.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
-- https://github.com/denisshevchenko/ohaskell.guide
name: ohaskell
version: 2.0.0.0
synopsis: Книга "О Haskell по-человечески"
homepage: http://www.ohaskell.guide
license-file: LICENSE
author: Denis Shevchenko <[email protected]>
maintainer: Denis Shevchenko <[email protected]>
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >= 1.10
executable ohaskell
main-is: Main.hs
other-modules: CreatePdf
, CreateEpub
, CreateEpubCss
, CreateCss
, CreateHtml
, CreateHtmlTemplates
, PrepareHtmlTOC
, SingleMarkdown
, SubjectIndex
build-depends: base
, text
, hakyll
, hakyll-contrib-hyphenation
, blaze-html
, blaze-markup
, clay
, process
, vector
, async
, directory
, filepath
, roman-numerals
, raw-strings-qq
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -threaded -O0 -j=2