name: reflex-orphans
version: 0.1
synopsis: Useful missing instances for Reflex
license: BSD3
license-file: LICENSE
author: davean
maintainer: davean <davean@xkcd.com>
copyright: Copyright (C) 2016 davean
stability: provisional
category: FRP
build-type: Simple
cabal-version: >=1.10
bug-reports: oss@xkcd.com
description:
This package provides additional instances missing from <https://hackage.haskell.org/package/reflex reflex>, specificly 'Functor' and 'Applicative' for 'Dynamic'. The inclusion of these instances facilitates easier, conventional Haskell style programming in reflex.
source-repository head
type: git
location: http://git.xkrd.net/davean/reflex-orphans.git
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules:
Reflex.Orphans
build-depends:
base >=4.8 && <5
, reflex >= 0.4
, these >= 0.4
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: test.hs
build-depends:
base >= 4.8 && < 5
, tasty == 0.11.*
, tasty-hunit == 0.9.*
, reflex
, reflex-orphans
, dependent-map
, ref-tf
, mtl