-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
65 lines (60 loc) · 1.4 KB
/
package.yaml
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: persistent-mtl
version: 0.5.2
maintainer: Brandon Chinn <[email protected]>
synopsis: Monad transformer for the persistent API
description: |
A monad transformer and mtl-style type class for using the
persistent API directly in your monad transformer stack.
category: Database
license: BSD3
extra-source-files:
- CHANGELOG.md
- README.md
- test/**/*.snap.md
ghc-options: -Wall -Wcompat -Wunused-packages
github: brandonchinn178/persistent-mtl
library:
source-dirs: src
dependencies:
- base < 5
- conduit
- containers
- exceptions
- monad-logger
- mtl
- persistent
- resource-pool
- resourcet
- text
- transformers
- unliftio
- unliftio-core
- unliftio-pool
when:
# https://gitlab.haskell.org/ghc/ghc/-/issues/20836
- condition: >
impl(ghc >= 9.4.0) && impl(ghc < 9.4.3)
buildable: false
tests:
persistent-mtl-test:
source-dirs: test
main: Main.hs
ghc-options: -F -pgmF=skeletest-preprocessor
build-tools:
- skeletest:skeletest-preprocessor
dependencies:
- base
- bytestring
- conduit
- containers
- esqueleto >= 3.5.14.0
- monad-logger
- persistent
- persistent-mtl
- persistent-postgresql >= 2.13.0.0
- persistent-sqlite >= 2.13.0.3
- resource-pool
- resourcet
- skeletest >= 0.2.1
- text
- unliftio