packages feed

SimpleServer-0.1.1.1: SimpleServer.cabal

-- SimpleServer: A simple static file server, for when apache is overkill
name          : SimpleServer
version       : 0.1.1.1
synopsis      : A simple static file server, for when apache is overkill
description   : A simple static file server, for when apache is overkill
license       : MIT
license-file  : LICENSE
author        : Anupam Jain
maintainer    : ajnsit@gmail.com
category      : Web
build-type    : Simple
cabal-version : >=1.16

source-repository head
    type     : git
    location : http://github.com/ajnsit/SimpleServer

source-repository this
    type     : git
    location : http://github.com/ajnsit/SimpleServer/tree/v0.1.1.1
    tag      : v0.1.1.1


library
  exposed-modules    : SimpleServer
  build-depends      : base
                     , wai-routes
                     , warp
                     , cmdargs
                     , dyre
                     , transformers
  buildable          : True
  hs-source-dirs     : src
  default-language   : Haskell2010

executable simpleserver
  main-is            : Main.hs
  build-depends      : base >= 4.7 && < 4.9
                     , wai-routes
                     , warp
                     , cmdargs
                     , dyre
                     , transformers
  buildable          : True
  hs-source-dirs     : src
  default-language   : Haskell2010