reflex-vty/reflex-vty.cabal

63 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-02-26 00:58:54 +03:00
name: reflex-vty
version: 0.1.0.0
2018-11-04 10:37:19 +03:00
synopsis: Reflex FRP host and widgets for vty applications
2018-11-05 10:38:32 +03:00
description:
Host and widget library for Reflex-based FRP applications
.
<<./doc/welcome.gif>>
2018-02-26 00:58:54 +03:00
license: BSD3
license-file: LICENSE
author: Obsidian Systems LLC
maintainer: maintainer@obsidian.systems
category: FRP
2018-02-26 00:58:54 +03:00
build-type: Simple
cabal-version: >=1.10
2018-11-05 10:38:32 +03:00
extra-doc-files: doc/welcome.gif
2018-11-05 10:43:28 +03:00
, doc/tasks.png
2018-02-26 00:58:54 +03:00
library
exposed-modules: Reflex.Vty
, Reflex.Vty.Host
, Reflex.Vty.Widget
, Reflex.Vty.Widget.Input
, Reflex.Vty.Widget.Input.Text
, Data.Text.Zipper
, Control.Monad.Writer.Adjustable
, Reflex.Class.Orphans
, Reflex.Class.Switchable
, Reflex.NotReady.Class.Orphans
, Reflex.Spider.Orphans
2018-02-26 00:58:54 +03:00
build-depends:
base,
containers,
2018-11-03 07:03:59 +03:00
data-default,
dependent-map,
2018-02-26 00:58:54 +03:00
dependent-sum,
2018-11-06 02:12:55 +03:00
exception-transformers,
2018-02-26 00:58:54 +03:00
mtl,
2018-02-26 01:42:42 +03:00
primitive,
ref-tf,
2018-02-26 00:58:54 +03:00
reflex,
2018-02-26 19:41:14 +03:00
stm,
2018-11-03 07:03:59 +03:00
text,
2018-02-26 01:42:42 +03:00
time,
2018-11-03 07:03:59 +03:00
transformers,
2018-02-26 00:58:54 +03:00
vty
hs-source-dirs: src
default-language: Haskell2010
executable example
hs-source-dirs: src-bin
main-is: example.hs
2018-10-14 03:28:02 +03:00
ghc-options: -threaded
build-depends:
base,
containers,
reflex,
reflex-vty,
2018-11-03 07:14:07 +03:00
text,
time,
2018-09-01 19:02:15 +03:00
transformers,
vty
default-language: Haskell2010