-- Initial snap-accept-language.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

name:                snap-language
version:             0.1.0.1
synopsis:            Language handling for Snap
description:        
  Language handling for Snap.
  .
  Support for determining the client's prefered language using
  the Accept-Language header or using suffixes to the requested URI.

homepage:            https://github.com/jonpetterbergman/snap-accept-language
bug-reports:         https://github.com/jonpetterbergman/snap-accept-language/issues
license:             BSD3
license-file:        LICENSE
author:              Petter Bergman
maintainer:          jon.petter.bergman@gmail.com
-- copyright:           
category:            Web
build-type:          Simple
extra-source-files:  README.md, CHANGELOG.md
cabal-version:       >=1.22
source-repository head
  type:     git
  location: http://github.com/jonpetterbergman/snap-accept-language

source-repository this
  type:     git
  location: http://github.com/jonpetterbergman/snap-accept-language
  tag:      v0.1.0.1

library
  exposed-modules:     Snap.Language
  -- other-modules:       
  other-extensions:    OverloadedStrings
  build-depends:       base >=4.8 && <4.9,
                       bytestring >=0.10.6.0 && < 0.11,
                       attoparsec >= 0.13.0.1 && < 0.14,
                       containers >= 0.5.6.2 && < 0.6
  build-depends:       snap-core >= 0.9.8.0 && < 1.1
  hs-source-dirs:      src
  default-language:    Haskell2010