packages feed

desert-0.1.0.0: desert.cabal

name:                desert
version:             0.1.0.0
synopsis:            a simple build tool for OCaml projects
description:         Please see README.md
homepage:            https://github.com/zjhmale/desert
license:             BSD3
license-file:        LICENSE
author:              zjhmale
maintainer:          zjhmale@gmail.com
copyright:           2016 zjhmale
category:            Language
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Build
                     , New
  build-depends:       base >= 4.7 && < 5
                     , bytestring >= 0.10.4.0
                     , directory >= 1.2.1.0
                     , filepath >= 1.3.0.2
                     , process
                     , transformers
                     , http-conduit
                     , shake
  default-language:    Haskell2010
  ghc-options:         -Wall

executable desert
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  build-depends:       base
                     , desert
  default-language:    Haskell2010

test-suite desert-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , desert
                     , hspec
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/zjhmale/desert