justin-site/package.yaml

55 lines
1.1 KiB
YAML

name: website
version: 0.1.0.0
github: "githubuser/website"
license: BSD3
author: "Author name here"
maintainer: "example@example.com"
copyright: "2018 Author name here"
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Web
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
dependencies:
- base >= 4.7 && < 5
- binary
- containers
- hakyll
- mtl
- pandoc
- pandoc-citeproc
- pandoc-types
- parsec
- process
- split
- text
library:
source-dirs: src
executables:
website-exe:
main: site.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- website
tests:
website-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- website