hapistrano/hapistrano.cabal

80 lines
2.4 KiB
Plaintext
Raw Normal View History

2014-05-21 03:28:58 +04:00
name: hapistrano
2015-03-12 00:23:28 +03:00
version: 0.2.0.0
synopsis: A deployment library for Haskell applications
2015-03-12 00:02:52 +03:00
description:
.
Hapistrano makes it easy to reliably deploy Haskell applications.
.
Following popular libraries like Ruby's <http://capistranorb.com/ Capistrano>,
Hapistrano simply creates a new sandbox, installs dependencies, builds, and
then symlinks to the new build directory when installation is done.
.
This process makes deploy atomic, without allowing for dependency problems.
2014-05-21 03:28:58 +04:00
license: MIT
license-file: LICENSE
author: Justin Leitgeb
maintainer: justin@stackbuilders.com
2015-03-12 00:23:28 +03:00
copyright: 2015 Stack Builders Inc.
2014-05-21 03:28:58 +04:00
category: System
build-type: Simple
cabal-version: >=1.10
2014-06-04 01:15:39 +04:00
executable hap
main-is: Main.hs
hs-source-dirs: src
2015-03-09 23:10:06 +03:00
build-depends: base >=4.5 && <4.8
2014-06-04 01:15:39 +04:00
, time
, old-locale
, process
, either
, transformers
2015-03-12 00:02:52 +03:00
, mtl
2014-06-04 01:15:39 +04:00
, filepath
, base-compat
2014-06-04 15:29:37 +04:00
default-language: Haskell2010
2015-03-12 00:02:52 +03:00
ghc-options: -Wall
2014-06-04 01:15:39 +04:00
library
2015-03-12 00:02:52 +03:00
exposed-modules: System.Hapistrano
other-modules: System.Hapistrano.Types
2015-03-09 23:10:06 +03:00
build-depends: base >=4.5 && <4.8
2014-05-21 03:28:58 +04:00
, time
, old-locale
, process
, either
, transformers
2015-03-12 00:02:52 +03:00
, mtl
, filepath
, base-compat
2014-05-21 03:28:58 +04:00
hs-source-dirs: src
default-language: Haskell2010
2015-03-12 00:02:52 +03:00
ghc-options: -Wall
test-suite hapistrano-test
type: exitcode-stdio-1.0
hs-source-dirs: spec, src
main-is: Spec.hs
build-depends: base >=4.5 && <4.8
, time
, old-locale
, process
, either
, transformers
, mtl
, filepath
, base-compat
, hspec
, temporary
, directory
default-language: Haskell2010
ghc-options: -Wall
2014-06-04 15:40:08 +04:00
source-repository head
type: git
location: https://github.com/stackbuilders/hapistrano