keter/keter.cabal

56 lines
2.0 KiB
Plaintext
Raw Normal View History

2012-05-06 08:07:02 +04:00
Name: keter
Version: 0.1
Synopsis: Yesod deployment manager
Description: Handles deployment of web apps, using Nginx as a reverse proxy to achieve zero downtime deployments.
Homepage: http://www.yesodweb.com/
License: MIT
License-file: LICENSE
Author: Michael Snoyman
Maintainer: michael@snoyman.com
Category: Web
Build-type: Simple
2012-05-06 08:21:19 +04:00
Cabal-version: >=1.8
2012-05-06 08:07:02 +04:00
2012-05-06 08:21:19 +04:00
Library
2012-05-06 08:07:02 +04:00
Build-depends: base >= 4 && < 5
2012-05-06 08:21:19 +04:00
, directory
, bytestring
2012-05-06 20:09:27 +04:00
, text
2012-05-06 08:21:19 +04:00
, containers
, transformers
, process
2012-05-06 20:09:27 +04:00
, random
2012-05-06 08:21:19 +04:00
, data-default
2012-05-11 08:38:05 +04:00
, filepath
, zlib
, tar
2012-05-11 11:40:01 +04:00
, network
2012-05-17 08:15:25 +04:00
, time
2012-05-17 10:32:11 +04:00
, template-haskell
2012-05-06 08:21:19 +04:00
, blaze-builder >= 0.3 && < 0.4
2012-05-06 20:09:27 +04:00
, yaml >= 0.7 && < 0.8
2012-05-11 11:40:01 +04:00
, unix-compat >= 0.3 && < 0.4
2012-05-11 12:29:25 +04:00
, hinotify >= 0.3 && < 0.4
2012-05-14 11:15:50 +04:00
, system-filepath >= 0.4 && < 0.5
2012-05-14 12:18:09 +04:00
, system-fileio >= 0.3 && < 0.4
2012-05-06 08:21:19 +04:00
Exposed-Modules: Keter.Nginx
2012-05-06 14:28:18 +04:00
Keter.Process
2012-05-06 20:09:27 +04:00
Keter.Postgres
2012-05-08 16:18:06 +04:00
Keter.TempFolder
2012-05-11 08:38:05 +04:00
Keter.App
2012-05-11 12:29:25 +04:00
Keter.Main
2012-05-14 11:15:50 +04:00
Keter.Prelude
2012-05-17 08:15:25 +04:00
Keter.LogFile
2012-05-17 10:32:11 +04:00
Keter.Logger
2012-05-06 08:21:19 +04:00
ghc-options: -Wall -Werror
2012-05-06 08:07:02 +04:00
2012-05-06 08:26:30 +04:00
Executable keter
Main-is: ../keter.hs
hs-source-dirs: dist
Build-depends: base, keter
2012-05-11 12:29:25 +04:00
ghc-options: -threaded -Wall -Werror
2012-05-06 08:26:30 +04:00
2012-05-06 08:07:02 +04:00
source-repository head
type: git
location: https://github.com/snoyberg/keter