yesod-auth-oauth.cabal 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. name: yesod-auth-oauth
  2. version: 1.4.1.1
  3. license: BSD3
  4. license-file: LICENSE
  5. author: Hiromi Ishii
  6. maintainer: Michael Litchard
  7. synopsis: OAuth Authentication for Yesod.
  8. category: Web, Yesod
  9. stability: Stable
  10. cabal-version: >= 1.6.0
  11. build-type: Simple
  12. homepage: http://www.yesodweb.com/
  13. description: API docs and the README are available at <http://www.stackage.org/package/yesod-auth-oauth>
  14. extra-source-files: README.md ChangeLog.md
  15. flag ghc7
  16. library
  17. if flag(ghc7)
  18. build-depends: base >= 4.3 && < 5
  19. cpp-options: -DGHC7
  20. else
  21. build-depends: base >= 4 && < 4.3
  22. build-depends: authenticate-oauth >= 1.5 && < 1.6
  23. , bytestring >= 0.9.1.4
  24. , yesod-core >= 1.4 && < 1.5
  25. , yesod-auth >= 1.4 && < 1.5
  26. , text >= 0.7
  27. , yesod-form >= 1.4 && < 1.5
  28. , transformers >= 0.2.2 && < 0.6
  29. , lifted-base >= 0.2 && < 0.3
  30. exposed-modules: Yesod.Auth.OAuth
  31. ghc-options: -Wall
  32. source-repository head
  33. type: git
  34. location: https://github.com/yesodweb/yesod