42 lines
1.3 KiB
Text
42 lines
1.3 KiB
Text
cabal-version: 2.4
|
|
-- Initial package description 'hablo.cabal' generated by 'cabal init'.
|
|
-- For further documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: hablo
|
|
version: 0.1.0.0
|
|
synopsis: A minimalist static blog generator
|
|
-- description:
|
|
homepage: https://git.marvid.fr/Tissevert/hablo
|
|
-- bug-reports:
|
|
license: BSD-3-Clause
|
|
license-file: LICENSE
|
|
author: Tissevert
|
|
maintainer: tissevert+devel@marvid.fr
|
|
-- copyright:
|
|
category: Web
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
executable hablo
|
|
main-is: Main.hs
|
|
other-modules: Arguments
|
|
, Article
|
|
, ArticlesList
|
|
, Blog
|
|
, Dom
|
|
, HTML
|
|
, JSON
|
|
-- other-extensions:
|
|
build-depends: aeson
|
|
, base ^>=4.12.0.0
|
|
, bytestring
|
|
, containers
|
|
, directory
|
|
, filepath
|
|
, lucid
|
|
, mtl
|
|
, optparse-applicative
|
|
, text
|
|
, unix
|
|
ghc-options: -Wall
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|