-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathTransformersStepByStep.cabal
32 lines (29 loc) · 1.31 KB
/
TransformersStepByStep.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: TransformersStepByStep
version: 0.1.2.0
synopsis: Tutorial on monad transformers.
description: In this tutorial, we describe how to use monad
transformers in order to incrementally add
functionality to Haskell programs. It is not a
paper about implementing transformers, but about
using them to write elegant, clean and powerful
programs in Haskell.
homepage: https://github.com/mgrabmueller/TransformersStepByStep
bug-reports: https://github.com/mgrabmueller/TransformersStepByStep/issues
license: BSD3
license-file: LICENSE
author: Martin Grabmueller
maintainer: [email protected]
category: Development
build-type: Simple
cabal-version: >=1.10
extra-source-files: bibliography.bib ChangeLog.md README.md
source-repository head
type: git
location: https://github.com/mgrabmueller/TransformersStepByStep
executable TransformersStepByStep
main-is: Transformers.lhs
build-depends: base >=4.5 && <4.12, mtl >=2.1, containers >=0.4
default-language: Haskell2010
ghc-options: -Wall
if impl(ghc >= 8.0.1)
default-extensions: MonadFailDesugaring