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
|
|
|
|
|
2024-09-15 20:35:15 +02:00
|
|
|
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
|
2024-10-10 23:53:54 +02:00
|
|
|
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
|
2024-10-10 23:53:54 +02:00
|
|
|
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
|
2024-10-10 23:53:54 +02:00
|
|
|
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
|
2024-09-24 22:14:47 +02:00
|
|
|
, text
|
2024-09-28 13:57:53 +02:00
|
|
|
, directory
|
|
|
|
, blaze-html
|
2024-10-11 22:14:28 +02:00
|
|
|
, 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
|
2024-10-30 21:53:57 +01:00
|
|
|
, text
|