2018-04-16 15:37:20 +02:00
|
|
|
name: cookbook-pagination
|
|
|
|
version: 2.1
|
|
|
|
synopsis: Pagination with Servant example
|
|
|
|
homepage: http://haskell-servant.readthedocs.org/
|
|
|
|
license: BSD3
|
|
|
|
license-file: ../../../servant/LICENSE
|
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
2018-05-26 00:33:19 +02:00
|
|
|
extra-source-files:
|
|
|
|
Pagination.lhs
|
|
|
|
dummy/Pagination.lhs
|
2018-06-01 12:42:34 +02:00
|
|
|
tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3
|
2018-04-16 15:37:20 +02:00
|
|
|
|
|
|
|
executable cookbook-pagination
|
2018-05-26 00:33:19 +02:00
|
|
|
main-is: Pagination.lhs
|
|
|
|
build-tool-depends: markdown-unlit:markdown-unlit
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall -pgmL markdown-unlit
|
|
|
|
|
2018-03-15 09:46:30 +01:00
|
|
|
if impl(ghc >= 8.0)
|
2018-05-26 00:33:19 +02:00
|
|
|
hs-source-dirs: .
|
2018-03-15 09:46:30 +01:00
|
|
|
build-depends: base >= 4.8 && <4.12
|
|
|
|
, aeson
|
|
|
|
, servant
|
|
|
|
, servant-server
|
|
|
|
, servant-pagination >= 2.1.0 && < 3.0.0
|
|
|
|
, warp
|
|
|
|
else
|
2018-05-26 00:33:19 +02:00
|
|
|
hs-source-dirs: dummy
|
2018-03-15 09:46:30 +01:00
|
|
|
build-depends: base
|