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
|
|
|
|
default-language: GHC2024
|
|
|
|
|
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.Values
|
|
|
|
Types.Value
|
|
|
|
Types.Function
|
|
|
|
Types.FunctionIO
|
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
|
|
|
|
Evaluation.Function
|
|
|
|
Evaluation.FunctionIO
|
|
|
|
SiteGenerator
|
2024-09-15 20:35:48 +02:00
|
|
|
build-depends:
|
|
|
|
base
|
|
|
|
, mtl
|
2024-09-21 16:54:37 +02:00
|
|
|
, bytestring
|
2024-09-23 21:14:18 +02:00
|
|
|
, template-haskell
|
2024-09-21 17:31:57 +02:00
|
|
|
|
|
|
|
executable byg
|
|
|
|
import: common
|
|
|
|
main-is: src/Main.hs
|
|
|
|
build-depends:
|
|
|
|
base
|
2024-09-23 21:14:18 +02:00
|
|
|
, template-haskell
|
2024-09-21 17:31:57 +02:00
|
|
|
, byg
|