-
Notifications
You must be signed in to change notification settings - Fork 1
/
wai-servlet.cabal
84 lines (75 loc) · 2.23 KB
/
wai-servlet.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
name: wai-servlet
-- * * * * * * * * * * * * WARNING * * * * * * * * * * * *
-- This file has been AUTO-GENERATED by dhall-to-cabal.
--
-- Do not edit it by hand, because your changes will be over-written!
--
-- Instead, edit the source Dhall file (which may have the
-- '.dhall' extension) and re-run dhall-to-cabal, passing the
-- source file's name as its argument and redirecting output to
-- 'wai-servlet.cabal' (this file).
-- * * * * * * * * * * * * WARNING * * * * * * * * * * * *
version: 0.1.5.1
cabal-version: 1.12
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: Javier Neira Sanchez <atreyu.bbb@gmail.com>
stability: Experimental
homepage: https://github.com/jneira/wai-servlet
bug-reports: https://github.com/jneira/wai-servlet/issues
description:
Integration of eta wai applications with the servlet api
category: Web
author: Javier Neira Sanchez
extra-source-files:
README.md
source-repository this
type: git
location: https://github.com/jneira/wai-servlet
tag: 0.1.5.1
flag wai-servlet-debug
description:
print debug output. not suitable for production
default: False
library
if impl(eta >=0.0.9.7)
build-depends:
eta-java-interop -any
cpp-options: -DINTEROP
if impl(eta <=0.7.0.2)
cpp-options: -DPURE_JAVA_WITH
if flag(wai-servlet-debug)
cpp-options: -DWAI_SERVLET_DEBUG
if impl(eta >=0.0.9)
java-sources:
java/Utils.java
else
java-sources:
java/eta-0.0.6/Utils.java
exposed-modules:
Network.Wai.Servlet
Network.Wai.Servlet.Examples
build-depends:
base >=4.8 && <4.9,
wai -any,
network -any,
http-types >=0.10,
http-date -any,
blaze-builder -any,
bytestring -any,
case-insensitive -any,
hashable -any,
utf8-string -any
maven-depends:
javax.servlet:servlet-api:2.5
default-language: Haskell2010
extra-libraries:
javax.servlet:servlet-api:2.5
hs-source-dirs: src
other-modules:
Network.Wai.Servlet.Request
Network.Wai.Servlet.Response
Network.Wai.Servlet.File
Network.Wai.Servlet.Settings
Javax.Servlet