39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
cabal-version: 3.0
|
|
|
|
name: reploy
|
|
synopsis: Straightforward static all-in-one website builder
|
|
category: Web
|
|
version: 0.2.0.0
|
|
build-type: Simple
|
|
license: Apache-2.0
|
|
license-file: LICENSE
|
|
|
|
executable reploy
|
|
main-is: reploy.hs
|
|
other-modules: Types, Utils, FormatOpts
|
|
build-depends: base == 4.*
|
|
, aeson ^>= 2.1
|
|
, bytestring
|
|
, containers
|
|
, data-default
|
|
, directory
|
|
, extra
|
|
, filepath
|
|
, microlens
|
|
, microlens-aeson
|
|
, microlens-mtl
|
|
, microlens-th
|
|
, mustache
|
|
, optparse-applicative
|
|
, pandoc
|
|
, pandoc-types
|
|
, parsec
|
|
, scientific
|
|
, SHA
|
|
, text
|
|
, transformers
|
|
, utf8-string
|
|
, yaml
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wunused-imports
|
|
default-language: Haskell2010
|