acatalepsie/site.cabal

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-06-13 16:22:47 +00:00
cabal-version: >=1.10
name: site
version: 0.1.0.0
author: flupe
maintainer: lucas@escot.me
build-type: Simple
optimization: 2
executable site
main-is: Main.hs
hs-source-dirs: src
other-modules: Templates
, Types
, Page
build-depends: base >=4.12 && <4.13
, filepath
, achille
2020-07-12 02:18:11 +00:00
, data-default
2020-06-13 16:22:47 +00:00
, blaze-html
, blaze-markup
, pandoc
, pandoc-types
, text
, bytestring
, filepath
, frontmatter
, aeson
, yaml
, binary
, containers
, dates
other-modules: Templates
ghc-options: -threaded
-Wunused-imports
-j8
default-language: Haskell2010