110 lines
2.2 KiB
Text
110 lines
2.2 KiB
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
|
|
HCat.FileInfo
|
|
HCat.Internal
|
|
HCat.Metrics
|
|
HCat.Screen
|
|
HCat.StatusLine
|
|
other-modules:
|
|
Paths_hcat
|
|
hs-source-dirs:
|
|
src
|
|
default-extensions:
|
|
BlockArguments
|
|
OverloadedStrings
|
|
ImportQualifiedPost
|
|
ghc-options: -Wall -fdefer-typed-holes
|
|
build-depends:
|
|
base >=4.13 && <5
|
|
, containers
|
|
, directory
|
|
, process
|
|
, text
|
|
, time
|
|
default-language: GHC2021
|
|
|
|
executable hcat
|
|
main-is: hcat.hs
|
|
other-modules:
|
|
Paths_hcat
|
|
hs-source-dirs:
|
|
app
|
|
default-extensions:
|
|
BlockArguments
|
|
OverloadedStrings
|
|
ImportQualifiedPost
|
|
ghc-options: -Wall -fdefer-typed-holes
|
|
build-depends:
|
|
base >=4.13 && <5
|
|
, containers
|
|
, directory
|
|
, hcat
|
|
, time
|
|
default-language: GHC2021
|
|
|
|
test-suite doctest
|
|
type: exitcode-stdio-1.0
|
|
main-is: Doctest.hs
|
|
other-modules:
|
|
Paths_hcat
|
|
hs-source-dirs:
|
|
test/doctest
|
|
default-extensions:
|
|
BlockArguments
|
|
OverloadedStrings
|
|
ImportQualifiedPost
|
|
ghc-options: -Wall -fdefer-typed-holes
|
|
build-tool-depends:
|
|
doctest:doctest
|
|
build-depends:
|
|
base >=4.13 && <5
|
|
, containers
|
|
, directory
|
|
, process
|
|
, time
|
|
default-language: Haskell2010
|
|
|
|
test-suite spec
|
|
type: exitcode-stdio-1.0
|
|
main-is: Spec.hs
|
|
other-modules:
|
|
HCatSpec
|
|
Paths_hcat
|
|
hs-source-dirs:
|
|
test/spec
|
|
default-extensions:
|
|
BlockArguments
|
|
OverloadedStrings
|
|
ImportQualifiedPost
|
|
ghc-options: -Wall -fdefer-typed-holes
|
|
cpp-options: -DTEST
|
|
build-tool-depends:
|
|
hspec-discover:hspec-discover
|
|
build-depends:
|
|
QuickCheck
|
|
, base >=4.13 && <5
|
|
, containers
|
|
, directory
|
|
, hcat
|
|
, hspec
|
|
, quickcheck-instances
|
|
, time
|
|
default-language: GHC2021
|