36 lines
592 B
YAML
36 lines
592 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
|
|
|
|
library:
|
|
source-dirs: src
|
|
verbatim:
|
|
default-language: GHC2021
|
|
|
|
executables:
|
|
hcat:
|
|
source-dirs: app
|
|
main: hcat.hs
|
|
dependencies:
|
|
- hcat
|
|
verbatim:
|
|
default-language: GHC2021
|