hcat/hcat.cabal

42 lines
878 B
Text

cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.7.
--
-- see: https://github.com/sol/hpack
name: hcat
version: 0.0.1.0
description: Hcat example from the book 'Effective Haskell'
author: Alexander Kobjolke
maintainer: alex@jakalx.net
copyright: Alexander Kobjolke 2023
license: MIT
build-type: Simple
extra-source-files:
README.org
library
exposed-modules:
HCat
other-modules:
Paths_hcat
hs-source-dirs:
src
ghc-options: -Wall -Wunused-packages
build-depends:
base >=4.13 && <5
, text
default-language: GHC2021
executable hcat
main-is: hcat.hs
other-modules:
Paths_hcat
hs-source-dirs:
app
ghc-options: -Wall -Wunused-packages
build-depends:
base >=4.13 && <5
, hcat
, text
default-language: GHC2021