packages feed

fb-persistent-0.3.4: fb-persistent.cabal

name:              fb-persistent
version:           0.3.4
license:           BSD3
license-file:      LICENSE
author:            Felipe Lessa
maintainer:        Felipe Lessa <felipe.lessa@gmail.com>
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.2
    , cereal     >= 0.3   && < 0.5
    , time       >= 1.4   && < 1.6
    , text