packages feed

sproxy-web-0.3.1: sproxy-web.cabal

name: sproxy-web
version: 0.3.1
synopsis: Web interface to sproxy database
description:
  Web frontend for managing sproxy.
  See https://hackage.haskell.org/package/sproxy
license: MIT
license-file: LICENSE
author: Alp Mestanogullari <alpmestan@gmail.com>
maintainer: Igor Pashev <pashev.igor@gmail.com>
copyright: 2014-2016, Zalora South East Asia Pte. Ltd
category: Web
build-type: Simple
extra-source-files: README.md ChangeLog.md example.config
cabal-version: >= 1.20
data-files:
  static/css/*.css,
  static/css/*.min.css,
  static/fonts/glyphicons-halflings-regular.eot,
  static/fonts/glyphicons-halflings-regular.svg,
  static/fonts/glyphicons-halflings-regular.ttf,
  static/fonts/glyphicons-halflings-regular.woff,
  static/js/*.js,
  static/js/*.min.js,
  static/js/jquery.color.min.js,
  static/js/jquery.jeditable.min.js,
  static/loading.gif

source-repository head
  type: git
  location: https://github.com/zalora/sproxy-web.git

executable sproxy-web
  default-language: Haskell2010
  ghc-options: -Wall -threaded -static -fno-warn-unused-do-bind
  main-is: Main.hs
  hs-source-dirs: src
  other-modules:
    Config
    DB
    Entities
    Handlers
    Paths_sproxy_web
    SproxyError
    Views.Common
    Views.DomainList
    Views.DomainPrivileges
    Views.ErrorPage
    Views.GroupList
    Views.Homepage
    Views.MemberList
    Views.PrivilegeRules
  build-depends:
      base >= 4.8 && < 5
    , aeson                 >= 0.6
    , blaze-html            >= 0.7
    , blaze-markup          >= 0.6
    , bytestring            >= 0.10
    , configurator          >= 0.2
    , data-default-class
    , directory
    , filepath
    , hflags                >= 0.4
    , http-types            >= 0.8
    , mtl                   >= 2.1
    , postgresql-simple     >= 0.4
    , resource-pool         >= 0.2
    , scotty                >= 0.10
    , text                  >= 0.11
    , wai
    , wai-extra             >= 2.0
    , wai-middleware-static >= 0.4
    , warp                  >= 3.2