mad/byg/byg.cabal

46 lines
964 B
Plaintext

cabal-version: 3.8
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
ghc-options: -Wall
default-language: GHC2024
library
import: common
hs-source-dirs: src
exposed-modules:
Types.Token
Types.Values
Types.Value
Types.Function
Types.FunctionIO
Types.Dependency
Types
DependencyGenerator
Evaluation.Function
Evaluation.FunctionIO
SiteGenerator
build-depends:
base
, mtl
, bytestring
, text
, template-haskell
executable byg
import: common
main-is: src/Main.hs
build-depends:
base
, text
, template-haskell
, byg