-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfb-persistent.cabal
38 lines (33 loc) · 1.09 KB
/
fb-persistent.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
name: fb-persistent
version: 0.3.6
license: BSD3
license-file: LICENSE
author: Felipe Lessa
maintainer: Felipe Lessa <[email protected]>
synopsis: Provides Persistent instances to Facebook types.
category: Web
stability: Experimental
cabal-version: >= 1.8
build-type: Simple
homepage: https://github.com/prowdsponsor/fb-persistent
description:
This package provides orphan Persistent instances to Facebook
types. It is needed because @fb@ package should not depend on
@persistent@, and neither should @persistent@ depend on @fb@.
Use this @fb-persistent@ package instead of providing your own
orphan instances.
source-repository head
type: git
location: git://github.com/prowdsponsor/fb-persistent.git
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
Facebook.Persistent
build-depends:
base >= 4 && < 5
, fb >= 0.13
, persistent >= 1.2 && < 2.3
, cereal >= 0.3 && < 0.6
, time >= 1.4 && < 1.7
, text