packages feed

yesod-auth-fb-0.0: yesod-auth-fb.cabal

Name:                yesod-auth-fb
Version:             0.0
Synopsis:            [PREVIEW] Authentication backend for Yesod using Facebook.
Homepage:            https://github.com/meteficha/yesod-auth-fb
License:             BSD3
License-file:        LICENSE
Author:              Felipe Lessa, Michael Snoyman
Maintainer:          Felipe Lessa <felipe.lessa@gmail.com>
Category:            Web
Build-type:          Simple
Cabal-version:       >= 1.6
Extra-source-files:  include/qq.h, README

Description:
  /THIS IS A PREVIEW RELEASE!/
  .
  This package allows you to use Yesod's authentication framework
  with Facebook as your backend.  That is, your site's users will
  log in to your site through Facebook.  Your application need to
  be registered on Facebook.

Source-repository head
  type:     git
  location: git://github.com/meteficha/yesod-auth-fb.git

flag ghc7

Library
  hs-source-dirs: src

  if flag(ghc7)
    Cpp-options:   -DGHC7
    Build-depends: base         >= 4.3     && < 5
  else
    Build-depends: base         >= 4       && < 4.3

  Build-depends:   yesod-core   >= 0.9     && < 0.10
                 , yesod-auth   >= 0.7     && < 0.8
                 , wai
                 , http-conduit
                 , text         >= 0.7     && < 0.12
                 , transformers >= 0.1.3   && < 0.3
                 , fb           >= 0.6.0.1 && < 0.7

  Exposed-modules: Yesod.Auth.FB
  Extensions: GADTs QuasiQuotes CPP OverloadedStrings
  GHC-options: -Wall
  Include-dirs: include