packages feed

stagen-0.2.0: package.yaml

name: stagen
version: '0.2.0'
category: Web
synopsis: Static site generator
description: Low dependency static site generator using markdown
maintainer: Joe Vargas
license: BSD3
extra-source-files:
- package.yaml
- README.md
ghc-options: -Wall
default-extensions:
- LambdaCase
- OverloadedStrings
- TupleSections
- RecordWildCards
- NamedFieldPuns
library:
  dependencies:
  - aeson
  - base >= 4.7 && < 5
  - base-compat
  - bytestring
  - blaze-html
  - data-default
  - directory
  - filemanip
  - lucid
  - markdown
  - mtl
  - optparse-applicative
  - parallel
  - parsec
  - json-feed
  - text
  - text-conversions
  - feed
  - network-uri
  - xml
  - xml-conduit
  - xml-types
  source-dirs: library
executables:
  stagen:
    dependencies:
    - base
    - stagen
    ghc-options:
    - -rtsopts
    - -threaded
    - -with-rtsopts=-N
    main: Main.hs
    source-dirs: executable