hcat/package.yaml

56 lines
927 B
YAML

name: hcat
version: 0.0.1.0
license: MIT
author: "Alexander Kobjolke"
maintainer: "alex@jakalx.net"
copyright: "Alexander Kobjolke 2023"
description: "HCat example from the book 'Effective Haskell'"
extra-source-files:
- README.org
dependencies:
- base >= 4.13 && < 5
- text
# - bytestring
# - time
# - process
# - directory
ghc-options:
- -Wall
- -Wunused-packages
- -fdefer-typed-holes
default-extensions:
- GHC2021
- BlockArguments
- OverloadedStrings
library:
source-dirs: src
verbatim:
default-language: GHC2021
executables:
hcat:
source-dirs: app
main: hcat.hs
dependencies:
- hcat
verbatim:
default-language: GHC2021
tests:
spec:
cpp-options: -DTEST
main: Spec.hs
source-dirs:
- test
dependencies:
- hcat
- hspec
- QuickCheck
- quickcheck-instances
- quickcheck-text
build-tools: hspec-discover