packages feed

vcatt-0.1: vcatt.cabal

name:                vcatt
version:             0.1
synopsis:            Recursively check that a directory is under version control.
description:         Version control all the things.  Please see README.md
homepage:            http://github.com/bergey/vcatt
license:             BSD3
license-file:        LICENSE
author:              Daniel Bergey
maintainer:          bergey@teallabs.org
copyright:           BSD3
category:            Web
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     VC.Tree
  build-depends:       base >= 4.6 && < 5
                     , shelly >= 1.6 && < 1.7
                     , extra >= 1.0 && < 1.5
                     , system-filepath >= 0.4.9 && < 0.5
  default-language:    Haskell2010

executable vcatt
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , vcatt
                     , shelly
                     , text >= 1.2 && < 1.3
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/bergey/vcatt