diff options
author | DonaldStewart <> | 2008-03-03 23:06:48 (GMT) |
---|---|---|
committer | Luite Stegeman <luite@luite.com> | 2008-03-03 23:06:48 (GMT) |
commit | e3b717112ccdb4a30ea88ae831283f17a3423740 (patch) | |
tree | 32c61c662443c7c700dd37d06376ab4a2fe98c03 /gravatar.cabal |
version 0.10.1
Diffstat (limited to 'gravatar.cabal')
-rw-r--r-- | gravatar.cabal | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gravatar.cabal b/gravatar.cabal new file mode 100644 index 0000000..2a8dd13 --- /dev/null +++ b/gravatar.cabal @@ -0,0 +1,28 @@ +name: gravatar +version: 0.1 +homepage: http://code.haskell.org/~dons/code/gravatar +synopsis: Find the url of the gravatar associated with an email address. +description: + Gravatars <gravatar.com> are globally unique images associated with an email + address, widely used in social networking sites. This library + lets you find the URL of a gravatar .png associated with an email + address. +category: Network +license: BSD3 +license-file: LICENSE +author: Don Stewart +maintainer: <dons@galois.com> +cabal-version: >= 1.2 +build-type: Simple + +flag small_base + description: Choose the new smaller, split-up base package. + +library + exposed-modules: Network.Gravatar + + if flag(small_base) + build-depends: base >= 3, bytestring + else + build-depends: base < 3 + build-depends: nano-md5 |