packages feed

nemesis-2016.3.19: nemesis.cabal

name:                 nemesis
category:             Tools
version:              2016.3.19
cabal-version:        >= 1.6

license:              BSD3
license-file:         LICENSE

author:               Jinjing Wang
maintainer:           Jinjing Wang <nfjinjing@gmail.com>

build-type:           Simple
tested-with:          GHC == 7.10.3

synopsis:             a task management tool for Haskell
description:          Organize common shell tasks into a meaningful tree like structure with dependency tracking

homepage:             http://github.com/nfjinjing/nemesis

extra-doc-files:      readme.md
                    , changelog.md
                    , known-issues.md

source-repository head
  type: git
  location: https://github.com/nfjinjing/nemesis.git

library
  ghc-options:      -Wall -fno-warn-unused-do-bind
  build-depends:
                      base > 4 && <= 6
                    , Glob
                    , containers
                    , directory
                    , dlist
                    , lens
                    , mtl
                    , process
                    , time

                    -- testing
                    -- , foreign-store >= 0.2
                    -- , air

  hs-source-dirs:     src/
  exposed-modules:
                      System.Nemesis
                      System.Nemesis.DSL
                      System.Nemesis.Env
                      System.Nemesis.Driver
                      System.Nemesis.Type
                      System.Nemesis.Utils