packages feed

hackmanager-0.1.0.0: hackmanager.cabal

name:                hackmanager
version:             0.1.0.0
synopsis:            Generate useful files for Haskell projects
description:         Simplify managing Haskell projects by generating files like README.md, .travis.yml, etc.
homepage:            http://github.com/agrafix/hackmanager
license:             BSD3
license-file:        LICENSE
author:              Alexander Thiemann <mail@athiemann.net>
maintainer:          Alexander Thiemann <mail@athiemann.net>
copyright:           (c) 2015 Alexander Thiemann
category:            Development
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC==7.10.*
extra-source-files:
    README.md
    templates/README.mustache
    templates/travis-stack.mustache
    templates/travis-cabal.mustache
    templates/gitignore.mustache
    examples/ReadmePrinter.hs

library
  hs-source-dirs:      src
  exposed-modules:
                       Hack.Manager.Readme
                       Hack.Manager.Types
                       Hack.Manager.Collector
                       Hack.Manager.Travis
                       Hack.Manager.Gitignore
  build-depends:
                       base >= 4.7 && < 5,
                       hastache >=0.6,
                       file-embed >=0.0.8,
                       bytestring >=0.10,
                       Glob >=0.7,
                       Cabal >=1.20,
                       text >=1.2,
                       mtl >=2.2,
                       process >=1.2,
                       http-client >=0.4,
                       http-client-tls >=0.2,
                       http-types >=0.8.6,
                       directory >=1.2
  default-language:    Haskell2010

executable hackmanager
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:
                       base,
                       hackmanager,
                       text >=1.2,
                       optparse-applicative >=0.11
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/agrafix/hackmanager