packages feed

depends-0.0.1: depends.cabal

name:             depends
version:          0.0.1
license:          MIT
license-file:     LICENSE
copyright:        (c) 2013 Simon Hengel
author:           Simon Hengel <sol@typeful.net>
maintainer:       Simon Hengel <sol@typeful.net>
build-type:       Simple
cabal-version:    >= 1.8
category:         Distribution
synopsis:         A simple configuration management tool for Haskell
description:      A simple configuration management tool for Haskell that uses
                  convention over configuration.

source-repository head
  type: git
  location: https://github.com/sol/depends

executable depends
  ghc-options:
      -Wall
  hs-source-dirs:
      src
  main-is:
      Main.hs
  other-modules:
      GhcPkg
      Cabal
      Run
      Config
  build-depends:
      base    == 4.*
    , process
    , containers
    , transformers
    , filepath
    , directory
    , yaml-config >= 0.2.0

test-suite spec
  type:
      exitcode-stdio-1.0
  ghc-options:
      -Wall -Werror
  hs-source-dirs:
      src, test
  main-is:
      Spec.hs
  build-depends:
      base    == 4.*
    , process
    , containers
    , transformers
    , filepath
    , directory
    , yaml-config

    , hspec   >= 1.7
    , QuickCheck