-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathservant-purescript.cabal
110 lines (101 loc) · 2.43 KB
/
servant-purescript.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: servant-purescript
version: 0.0.1
synopsis: Automatically derive purescript functions to query servant webservices
description:
Automatically derive purescript functions to query servant webservices.
license: BSD3
license-file: LICENSE
author: Anchor Engineering <[email protected]>
maintainer: Anchor Engineering <[email protected]>
copyright: 2015 Anchor
category: Web
build-type: Simple
cabal-version: >=1.10
Bug-reports: http://github.com/anchor/servant-purescript/issues
source-repository head
type: git
location: http://github.com/anchor/servant-purescript.git
flag example
description: Build the example too
manual: True
default: False
library
exposed-modules: Servant.PureScript
build-depends: base >=4.5 && <5
, lens >= 4
, servant >= 0.2.1
, servant-jquery
, text
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable counter
main-is: counter.hs
ghc-options: -O2 -Wall
hs-source-dirs: examples/counter
if flag(example)
buildable: True
else
buildable: False
build-depends:
aeson
, base
, filepath
, Glob
, process
, purescript
, servant >= 0.2.1
, servant-server >= 0.2.1
, servant-jquery >= 0.2.1
, servant-purescript >= 0.0.1
, stm
, transformers
, warp
default-language: Haskell2010
executable todolist
main-is: ToDo.hs
ghc-options: -O2 -Wall
hs-source-dirs: examples/todo
if flag(example)
buildable: True
else
buildable: False
build-depends:
aeson
, base
, containers
, either
, filepath
, Glob
, lens
, mtl >= 2.2
, process
, purescript
, servant
, servant-server
, servant-jquery
, servant-purescript
, stm
, text
, transformers
, uuid
, warp
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options: -Wall
main-is: Spec.hs
build-depends:
base == 4.*
, lens
, servant-jquery
, servant
, servant-purescript
, hspec >= 2.0
, hspec-expectations
, language-ecmascript == 0.16.*
, parsec
, process
, purescript
default-language: Haskell2010