43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
|
cabal-version: >=1.10
|
||
|
name: escot
|
||
|
version: 0.1.0.0
|
||
|
author: flupe
|
||
|
maintainer: lucas@escot.me
|
||
|
build-type: Simple
|
||
|
|
||
|
executable escot
|
||
|
main-is: Main.hs
|
||
|
hs-source-dirs: src
|
||
|
other-modules: Config
|
||
|
build-depends: base
|
||
|
, filepath
|
||
|
, achille
|
||
|
, data-default
|
||
|
, pandoc
|
||
|
, pandoc-types
|
||
|
, text
|
||
|
, bytestring
|
||
|
, filepath
|
||
|
, aeson
|
||
|
, yaml
|
||
|
, binary
|
||
|
, containers
|
||
|
, sort
|
||
|
, feed
|
||
|
, time
|
||
|
, lucid
|
||
|
, optparse-applicative
|
||
|
, process
|
||
|
, directory
|
||
|
default-extensions: BlockArguments
|
||
|
, TupleSections
|
||
|
, OverloadedStrings
|
||
|
, ScopedTypeVariables
|
||
|
, DeriveGeneric
|
||
|
, DeriveAnyClass
|
||
|
, RecordWildCards
|
||
|
, NamedFieldPuns
|
||
|
ghc-options: -threaded
|
||
|
-j8
|
||
|
default-language: Haskell2010
|