mad/byg/byg.cabal

60 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-10-20 15:35:24 +02:00
Types.Date
2024-09-21 18:02:20 +02:00
Types
2024-09-23 22:11:54 +02:00
DependencyGenerator
Functions.Image
Functions.Pandoc
Functions.Paths
Functions.Template
Functions.Text
2024-10-15 23:32:15 +02:00
Functions.Date
2024-10-20 15:35:24 +02:00
Functions.Atom
Functions
2024-09-27 20:39:27 +02:00
DependencyRunner
2024-09-23 22:11:54 +02:00
SiteGenerator
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
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
, text