forked from etcinit/kawaii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkawaii.cabal
91 lines (87 loc) · 1.98 KB
/
kawaii.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
-- This file has been generated from package.yaml by hpack version 0.14.0.
--
-- see: https://github.com/sol/hpack
name: kawaii
version: 0.0.1.1
synopsis: Utilities for serving static sites and blogs with Wai/Warp
category: Web
homepage: https://phabricator.chromabits.com/diffusion/KWAI/
maintainer: Eduardo Trujillo <[email protected]>
license: Apache
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
flag hakyll
description: Include Hakyll utilities
manual: False
default: True
library
hs-source-dirs:
src
default-extensions: LambdaCase
ghc-options: -Wall
build-depends:
base >= 4.7 && < 5
, safe == 0.3.*
, text
, lens
, bytestring
, optparse-applicative
, warp == 3.*
, warp-tls == 3.*
, wai == 3.*
, wai-extra >= 3.0.14
, wai-app-static == 3.*
, streaming-commons == 0.1.*
, containers
, data-default
, lifted-base
, mtl
, monad-logger
, monad-control
if flag(hakyll)
build-depends:
hakyll
exposed-modules:
Hakyll.Serve.Main
exposed-modules:
Network.Wai.Serve
Network.Wai.Serve.Applications
Network.Wai.Serve.Listeners
Network.Wai.Serve.Main
Network.Wai.Serve.Middleware
Network.Wai.Serve.Types
default-language: Haskell2010
test-suite wai-static-extra-spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
default-extensions: LambdaCase
ghc-options: -Wall
build-depends:
base >= 4.7 && < 5
, safe == 0.3.*
, text
, lens
, bytestring
, optparse-applicative
, warp == 3.*
, warp-tls == 3.*
, wai == 3.*
, wai-extra >= 3.0.14
, wai-app-static == 3.*
, streaming-commons == 0.1.*
, containers
, data-default
, lifted-base
, mtl
, monad-logger
, monad-control
, kawaii
, hspec
, QuickCheck
if flag(hakyll)
build-depends:
hakyll
default-language: Haskell2010