packages feed

helics-wai-0.2.0.2: helics-wai.cabal

name:                helics-wai
version:             0.2.0.2
synopsis:            New Relic® agent SDK wrapper for wai.
description:         
  New Relic® agent SDK wrapper for wai.
  .
  Please read example: <https://github.com/philopon/helics/blob/master/helics-wai/example.hs>.
license:             MIT
license-file:        LICENSE
author:              HirotomoMoriwaki<philopon.dependence@gmail.com>
maintainer:          HirotomoMoriwaki<philopon.dependence@gmail.com>
Homepage:            https://github.com/philopon/helics
Bug-reports:         https://github.com/philopon/helics/issues
copyright:           (c) 2014 Hirotomo Moriwaki
category:            Network
build-type:          Simple
stability:           experimental
cabal-version:       >=1.10

flag example
  default: False

library
  exposed-modules:     Network.Helics.Wai
                       Network.Helics.Wai.Safe
  -- other-extensions:    
  build-depends:       base               >=4.6  && <4.8
                     , wai                >=3.0  && <3.1
                     , vault              >=0.3  && <0.4
                     , helics             >=0.1  && <0.4
  ghc-options:         -Wall -O2
  hs-source-dirs:      src
  default-language:    Haskell2010

executable helics-wai-example
  main-is:             example.hs
  if flag(example)
    build-depends:       base               >=4.6  && <4.8
                       , wai
                       , helics-wai
                       , warp
                       , helics
                       , vault
                       , http-types
                       , bytestring
    buildable:         True
  else
    buildable:         False
  ghc-options:         -Wall -O2 -threaded
  default-language:    Haskell2010