Track package.yaml.
This commit is contained in:
parent
5ac84daf23
commit
f468d8a51e
18
package.yaml
18
package.yaml
|
@ -6,10 +6,6 @@ author: "Author name here"
|
||||||
maintainer: "example@example.com"
|
maintainer: "example@example.com"
|
||||||
copyright: "2018 Author name here"
|
copyright: "2018 Author name here"
|
||||||
|
|
||||||
extra-source-files:
|
|
||||||
- README.md
|
|
||||||
- ChangeLog.md
|
|
||||||
|
|
||||||
# Metadata used when publishing your package
|
# Metadata used when publishing your package
|
||||||
# synopsis: Short description of your package
|
# synopsis: Short description of your package
|
||||||
# category: Web
|
# category: Web
|
||||||
|
@ -17,17 +13,27 @@ extra-source-files:
|
||||||
# To avoid duplicated efforts in documentation and dealing with the
|
# To avoid duplicated efforts in documentation and dealing with the
|
||||||
# complications of embedding Haddock markup inside cabal files, it is
|
# complications of embedding Haddock markup inside cabal files, it is
|
||||||
# common to point users to the README.md file.
|
# common to point users to the README.md file.
|
||||||
description: Please see the README on Github at <https://github.com/githubuser/website#readme>
|
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- base >= 4.7 && < 5
|
- base >= 4.7 && < 5
|
||||||
|
- binary
|
||||||
|
- containers
|
||||||
|
- hakyll
|
||||||
|
- mtl
|
||||||
|
- pandoc
|
||||||
|
- pandoc-citeproc
|
||||||
|
- pandoc-types
|
||||||
|
- parsec
|
||||||
|
- process
|
||||||
|
- split
|
||||||
|
- text
|
||||||
|
|
||||||
library:
|
library:
|
||||||
source-dirs: src
|
source-dirs: src
|
||||||
|
|
||||||
executables:
|
executables:
|
||||||
website-exe:
|
website-exe:
|
||||||
main: Main.hs
|
main: site.hs
|
||||||
source-dirs: app
|
source-dirs: app
|
||||||
ghc-options:
|
ghc-options:
|
||||||
- -threaded
|
- -threaded
|
||||||
|
|
Loading…
Reference in New Issue