packages feed

github-post-receive-1.0.1.0: github-post-receive.cabal

name:                github-post-receive
version:             1.0.1.0
synopsis:            Github post-receive server library
description:         This is a library to construct a github post-receive server.
homepage:            https://github.com/amutake/github-post-receive
license:             BSD3
license-file:        LICENSE
author:              Shohei Yasutake
maintainer:          Shohei Yasutake <amutake.s@gmail.com>
copyright:           Copyright (C) 2013 Shohei Yasutake
category:            Web
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type:              git
  location:          git://github.com/amutake/github-post-receive.git

library
  exposed-modules:   Github.PostReceive
                   , Github.PostReceive.Types
                   , Github.PostReceive.Server
  hs-source-dirs:    src
  build-depends:     base ==4.*
                   , bytestring ==0.10.*
                   , text ==0.11.*
                   , aeson >=0.6
                   , email-validate >=1.0
                   , conduit >=1.0
                   , http-types >=0.8
                   , wai >=2.0
                   , warp >=2.0
  ghc-options:       -Wall -fno-warn-orphans -fno-warn-unused-do-bind
  default-language:  Haskell2010