forked from pbrisbin/yesod-paginator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyesod-paginator.cabal
61 lines (53 loc) · 1.82 KB
/
yesod-paginator.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
name: yesod-paginator
version: 0.10.0
synopsis: A pagination approach for yesod
description: Paginate a list showing a per-item widget and links to other pages
homepage: http://github.com/pbrisbin/yesod-paginator
license: BSD3
license-file: LICENSE
author: Patrick Brisbin
maintainer: [email protected]
category: Web, Yesod
build-type: Simple
cabal-version: >=1.8
flag example
description: Build the example application
default: False
library
hs-source-dirs: src
exposed-modules: Yesod.Paginator
Yesod.Paginator.Widget
build-depends: base >= 4 && < 5
, text >= 0.11 && < 2.0
, yesod >= 1.4
, persistent >= 2.0
, resourcet >= 0.4.4
, transformers
ghc-options: -Wall
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -Wall
build-depends: base
, hspec
, yesod-paginator
, data-default
, wai-extra
, yesod-core
, yesod-test
executable yesod-paginator-example
if flag(example)
buildable: True
else
buildable: False
main-is: Main.hs
hs-source-dirs: example
ghc-options: -Wall
build-depends: base
, yesod
, yesod-paginator
, warp
source-repository head
type: git
location: git://github.com/pbrisbin/yesod-paginator.git