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-27 13:49:45 +00:00
|
|
|
, Readings
|
2021-03-17 20:49:22 +00:00
|
|
|
, Route
|
2022-12-06 19:59:09 +00:00
|
|
|
, Math
|
2021-04-05 12:59:41 +00:00
|
|
|
build-depends: base
|
2020-06-13 16:22:47 +00:00
|
|
|
, 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
|
2022-12-06 19:59:09 +00:00
|
|
|
, feed >= 1.3.2.1
|
2020-09-25 23:45:58 +00:00
|
|
|
, time
|
2020-09-26 23:33:50 +00:00
|
|
|
, lucid
|
2020-10-07 17:02:37 +00:00
|
|
|
, optparse-applicative
|
|
|
|
, process
|
|
|
|
, directory
|
2022-12-06 19:59:09 +00:00
|
|
|
, these
|
|
|
|
, megaparsec
|
2021-03-17 20:49:22 +00:00
|
|
|
default-extensions: BlockArguments
|
|
|
|
, TupleSections
|
|
|
|
, OverloadedStrings
|
|
|
|
, ScopedTypeVariables
|
|
|
|
, DeriveGeneric
|
|
|
|
, DeriveAnyClass
|
|
|
|
, RecordWildCards
|
|
|
|
, NamedFieldPuns
|
2020-06-13 16:22:47 +00:00
|
|
|
ghc-options: -threaded
|
|
|
|
-j8
|
|
|
|
default-language: Haskell2010
|