mad/byg/byg.cabal

64 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

2024-09-12 19:49:58 +02:00
cabal-version: 3.8
2024-09-11 22:32:14 +02:00
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
2024-09-11 22:32:14 +02:00
ghc-options: -Wall
2024-09-28 13:57:53 +02:00
default-language: GHC2021
default-extensions:
OverloadedStrings
LambdaCase
2024-09-11 22:32:14 +02:00
2024-09-21 17:31:57 +02:00
library
import: common
hs-source-dirs: src
exposed-modules:
2024-11-09 22:55:42 +01:00
Byg.Types
Byg.DependencyGenerator
Byg.Functions
Byg.DependencyFormatter
Byg.DependencyRunner
other-modules:
Byg.Types.Token
Byg.Types.Value
Byg.Types.Functions
Byg.Types.Dependency
Byg.Types.Date
Byg.Functions.Image
Byg.Functions.Pandoc
Byg.Functions.Paths
Byg.Functions.Template
Byg.Functions.Text
Byg.Functions.Date
Byg.Functions.Atom
2024-09-15 20:35:48 +02:00
build-depends:
2024-09-28 13:57:53 +02:00
base >=4.14 && <4.20
2024-09-15 20:35:48 +02:00
, mtl
2024-09-27 20:39:27 +02:00
, containers
, text
2024-09-28 13:57:53 +02:00
, directory
, time
2024-09-28 13:57:53 +02:00
, blaze-html
, pandoc-types
2024-09-28 13:57:53 +02:00
, pandoc
, JuicyPixels
, JuicyPixels-stbir
2024-09-21 17:31:57 +02:00
executable byg
import: common
hs-source-dirs: app
main-is: Main.hs
other-modules:
SiteGenerator
2024-09-21 17:31:57 +02:00
build-depends:
2024-09-28 13:57:53 +02:00
base >=4.14 && <4.20
2024-09-21 17:31:57 +02:00
, byg
, text