hablo/hablo.cabal

57 lines
1.7 KiB
Plaintext
Raw Normal View History

2019-01-27 21:41:21 +01:00
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
2019-02-15 14:13:43 +01:00
build-type: Simple
data-dir: share
2019-02-15 14:13:43 +01:00
data-files: js/*.js
2019-02-17 19:52:28 +01:00
defaultWording.conf
2019-01-27 21:41:21 +01:00
executable hablo
main-is: Main.hs
other-modules: Arguments
, Article
, ArticlesList
2019-01-27 21:41:21 +01:00
, Blog
, Blog.Path
, Blog.Skin
2019-02-17 19:52:28 +01:00
, Blog.Wording
2019-01-27 21:41:21 +01:00
, Dom
, Files
, HTML
, JS
2019-01-27 21:41:21 +01:00
, JSON
, Paths_hablo
, Pretty
2019-01-27 21:41:21 +01:00
-- other-extensions:
build-depends: aeson
, base ^>=4.12.0.0
, bytestring
, containers
, directory
, filepath
, lucid
, mtl
, optparse-applicative
2019-02-15 14:13:43 +01:00
, parsec
2019-02-17 19:52:28 +01:00
, template
2019-01-27 21:41:21 +01:00
, text
, time
2019-01-27 21:41:21 +01:00
, unix
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010