51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
|
Name: transformers-base
|
||
|
Version: 0.4.4
|
||
|
x-revision: 1
|
||
|
Category: Control
|
||
|
Stability: experimental
|
||
|
Synopsis: Lift computations from the bottom of a transformer stack
|
||
|
Description:
|
||
|
This package provides a straightforward port of @monadLib@'s BaseM
|
||
|
typeclass to @transformers@.
|
||
|
|
||
|
Homepage: https://github.com/mvv/transformers-base
|
||
|
Bug-Reports: https://github.com/mvv/transformers-base/issues
|
||
|
|
||
|
Author:
|
||
|
Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>,
|
||
|
Bas van Dijk <v.dijk.bas@gmail.com>
|
||
|
Maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
|
||
|
Copyright:
|
||
|
2011 Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>,
|
||
|
Bas van Dijk <v.dijk.bas@gmail.com>
|
||
|
License: BSD3
|
||
|
License-File: LICENSE
|
||
|
|
||
|
Cabal-Version: >= 1.6.0
|
||
|
Build-Type: Simple
|
||
|
|
||
|
Source-Repository head
|
||
|
Type: git
|
||
|
Location: https://github.com/mvv/transformers-base.git
|
||
|
|
||
|
Flag OrphanInstances
|
||
|
Description:
|
||
|
Declare orphan Applicative instances for lazy and strict ST if needed
|
||
|
Default: True
|
||
|
|
||
|
Library
|
||
|
Build-Depends:
|
||
|
base >= 3 && < 5,
|
||
|
base < 4.4 || >= 4.5,
|
||
|
stm >= 2.3,
|
||
|
transformers >= 0.2,
|
||
|
transformers-compat >= 0.2
|
||
|
Hs-Source-Dirs: src
|
||
|
GHC-Options: -Wall
|
||
|
if flag(OrphanInstances)
|
||
|
CPP-Options: -DHS_TRANSFORMERS_BASE__ORPHANS=1
|
||
|
else
|
||
|
CPP-Options: -DHS_TRANSFORMERS_BASE__ORPHANS=0
|
||
|
Exposed-Modules:
|
||
|
Control.Monad.Base
|