mad/byg/byg.cabal

57 lines
1.2 KiB
Plaintext
Raw 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-09-23 22:11:54 +02:00
Types.Token
Types.Value
Types.Functions
2024-09-24 21:21:49 +02:00
Types.Dependency
2024-09-21 18:02:20 +02:00
Types
2024-09-23 22:11:54 +02:00
DependencyGenerator
Functions.General
Functions.Image
Functions.Pandoc
Functions.Paths
Functions.Template
Functions.Text
Functions
2024-09-27 20:39:27 +02:00
DependencyRunner
2024-09-23 22:11:54 +02:00
SiteGenerator
2024-10-05 15:35:52 +02:00
Precomputer
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
, blaze-html
, pandoc
, JuicyPixels
, JuicyPixels-stbir
, template-haskell >=2.16 && <2.22
2024-09-21 17:31:57 +02:00
executable byg
import: common
main-is: src/Main.hs
build-depends:
2024-09-28 13:57:53 +02:00
base >=4.14 && <4.20
2024-09-21 17:31:57 +02:00
, byg