mad/byg/byg.cabal

60 lines
1.2 KiB
Plaintext

cabal-version: 3.8
name: byg
version: 0.1.0.0
synopsis: The website builder for mad
license: AGPL-3.0-or-later
license-file: COPYING
author: Niels G. W. Serup
maintainer: ngws@metanohi.name
build-type: Simple
extra-doc-files: README.md
common common
ghc-options: -Wall
default-language: GHC2021
default-extensions:
OverloadedStrings
LambdaCase
library
import: common
hs-source-dirs: src
exposed-modules:
Types.Token
Types.Value
Types.Functions
Types.Dependency
Types.Date
Types
DependencyGenerator
Functions.Image
Functions.Pandoc
Functions.Paths
Functions.Template
Functions.Text
Functions.Date
Functions.Atom
Functions
DependencyRunner
SiteGenerator
build-depends:
base >=4.14 && <4.20
, mtl
, containers
, text
, directory
, time
, blaze-html
, pandoc-types
, pandoc
, JuicyPixels
, JuicyPixels-stbir
executable byg
import: common
main-is: src/Main.hs
build-depends:
base >=4.14 && <4.20
, byg
, text