packages feed

gravatar-0.8.0: gravatar.cabal

name:                   gravatar
version:                0.8.0
author:                 Pat Brisbin <pbrisbin@gmail.com>
maintainer:             Pat Brisbin <pbrisbin@gmail.com>
license:                MIT
license-file:           LICENSE
synopsis:               Generate Gravatar image URLs
description:            Generate Gravatar image URLs
cabal-version:          >= 1.10
build-type:             Simple

library
  default-language:     Haskell2010
  hs-source-dirs:       src
  ghc-options:          -Wall
  exposed-modules:      Network.Gravatar
  build-depends:        base       >= 4     && < 5
                      , text       >= 0.11  && < 2.0
                      , bytestring >= 0.9.1 && < 0.11
                      , pureMD5                < 3
                      , HTTP
                      , data-default

test-suite spec
  type:                 exitcode-stdio-1.0
  default-language:     Haskell2010
  hs-source-dirs:       test
  ghc-options:          -Wall
  main-is:              Spec.hs
  build-depends:        base
                      , hspec
                      , gravatar
                      , text

source-repository head
  type:                 git
  location:             https://github.com/pbrisbin/gravatar