hcat/hcat.cabal
Alexander Kobjolke 10057518cb Implement a status line
The status line shows information about the shown file, such as size,
modification time and permissions.
2023-09-10 11:36:35 +02:00

105 lines
2.1 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.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
, 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
, 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
, 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
, directory
, hcat
, hspec
, quickcheck-instances
, time
default-language: GHC2021