forked from bitnomial/opaleye-trans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opaleye-trans.cabal
65 lines (60 loc) · 1.95 KB
/
opaleye-trans.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
name: opaleye-trans
version: 0.3.1
synopsis: A monad transformer for Opaleye
description: A monad transformer for Opaleye
homepage: https://github.com/tomjaguarpaw/haskell-opaleye
license: BSD3
license-file: LICENSE
author: Matthew Wraith
maintainer: wraithm@gmail.com
copyright: (c) 2015 Bitnomial, Inc
category: Database
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/WraithM/opaleye-trans
Flag build-examples
Description: Build example apps
Default: True
library
hs-source-dirs: src
exposed-modules: Opaleye.Trans
Opaleye.Types
-- other-modules:
default-language: Haskell2010
build-depends:
base >=4.8 && <4.18,
mtl >=2.2 && <2.3,
transformers >=0.3 && <0.6,
transformers-base >=0.4 && <0.5,
opaleye >=0.4 && <0.10,
postgresql-simple >=0.4 && <0.7,
product-profunctors >=0.6 && <0.12,
text >=1.2 && <2.1
executable opaleye-rosetree
if !flag(build-examples)
Buildable: False
hs-source-dirs: examples/v1
main-is: RoseTree.hs
default-language: Haskell2010
build-depends:
base >=4.8 && <4.18,
transformers >=0.3 && <0.6,
opaleye >=0.4 && <0.10,
postgresql-simple >=0.4 && <0.7,
product-profunctors >=0.6 && <0.12,
opaleye-trans
executable opaleye-rosetree2
if !flag(build-examples)
Buildable: False
hs-source-dirs: examples/v2
main-is: RoseTree.hs
default-language: Haskell2010
build-depends:
base >=4.8 && <4.18,
transformers >=0.3 && <0.6,
opaleye >=0.4 && <0.10,
postgresql-simple >=0.4 && <0.7,
product-profunctors >=0.6 && <0.12,
opaleye-trans