acatalepsie/site.cabal

49 lines
1.5 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
executable site
main-is: Main.hs
hs-source-dirs: src
other-modules: Templates
, Types
2020-09-25 23:45:58 +00:00
, Posts
, Projects
, Common
, Config
, Visual
2020-09-26 23:33:50 +00:00
, Templates
2020-09-27 13:49:45 +00:00
, Readings
2020-06-13 16:22:47 +00:00
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
, pandoc
, pandoc-types
, text
, bytestring
, filepath
, aeson
, yaml
, binary
, containers
2020-09-25 23:45:58 +00:00
, sort
, feed
, time
2020-09-26 23:33:50 +00:00
, lucid
2020-09-25 23:45:58 +00:00
extensions: BlockArguments
, TupleSections
, OverloadedStrings
, ScopedTypeVariables
2020-09-26 23:33:50 +00:00
, DeriveGeneric
, DeriveAnyClass
2020-09-27 13:49:45 +00:00
, RecordWildCards
, NamedFieldPuns
2020-06-13 16:22:47 +00:00
ghc-options: -threaded
-j8
2020-09-26 23:33:50 +00:00
-O2
2020-06-13 16:22:47 +00:00
default-language: Haskell2010