2018-02-26 00:58:54 +03:00
|
|
|
name: reflex-vty
|
2020-01-10 22:19:01 +03:00
|
|
|
version: 0.1.2.1
|
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
|
|
|
|
.
|
2019-08-04 04:55:13 +03:00
|
|
|
<<https://i.imgur.com/FULQNtu.gif>>
|
|
|
|
.
|
2018-02-26 00:58:54 +03:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
2018-02-27 06:47:07 +03:00
|
|
|
author: Obsidian Systems LLC
|
|
|
|
maintainer: maintainer@obsidian.systems
|
2020-01-10 20:12:42 +03:00
|
|
|
copyright: 2020 Obsidian Systems LLC
|
2018-02-27 06:47:07 +03:00
|
|
|
category: FRP
|
2018-02-26 00:58:54 +03:00
|
|
|
build-type: Simple
|
2019-08-04 04:38:35 +03:00
|
|
|
cabal-version: >=1.18
|
2019-08-04 03:06:51 +03:00
|
|
|
extra-source-files: README.md
|
|
|
|
ChangeLog.md
|
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
|
2019-08-04 19:44:11 +03:00
|
|
|
tested-with: GHC ==8.6.5 || ==8.4.4
|
2018-02-26 00:58:54 +03:00
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules: Reflex.Vty
|
2018-10-28 17:54:05 +03:00
|
|
|
, Reflex.Vty.Host
|
|
|
|
, Reflex.Vty.Widget
|
2018-11-04 10:09:44 +03:00
|
|
|
, Reflex.Vty.Widget.Input
|
|
|
|
, Reflex.Vty.Widget.Input.Text
|
2019-08-04 04:14:37 +03:00
|
|
|
, Reflex.Vty.Widget.Layout
|
2018-11-04 10:09:44 +03:00
|
|
|
, Data.Text.Zipper
|
2018-11-05 04:56:47 +03:00
|
|
|
, Reflex.Class.Switchable
|
|
|
|
, Reflex.Spider.Orphans
|
2019-08-04 03:00:09 +03:00
|
|
|
, Control.Monad.NodeId
|
2018-02-26 00:58:54 +03:00
|
|
|
build-depends:
|
2019-08-26 15:30:56 +03:00
|
|
|
base >= 4.10.0 && < 4.13,
|
2019-08-04 19:44:11 +03:00
|
|
|
bimap >= 0.3.3 && < 0.4,
|
2019-08-04 19:49:54 +03:00
|
|
|
containers >= 0.5.0 && < 0.7,
|
2019-08-04 18:07:12 +03:00
|
|
|
mtl >= 2.2.2 && < 2.3,
|
2019-08-04 19:49:54 +03:00
|
|
|
transformers >= 0.5.5 && < 0.6,
|
|
|
|
stm >= 2.4 && < 2.6,
|
2019-08-04 18:07:12 +03:00
|
|
|
data-default >= 0.7.1 && < 0.8,
|
2019-08-04 19:49:54 +03:00
|
|
|
dependent-map >= 0.2.4 && < 0.4,
|
2019-08-04 19:44:11 +03:00
|
|
|
text >= 1.2.3 && < 1.3,
|
2019-09-07 22:07:04 +03:00
|
|
|
text-icu >= 0.7 && < 0.8,
|
2019-08-04 19:49:54 +03:00
|
|
|
dependent-sum >= 0.3 && < 0.7,
|
2019-08-04 18:07:12 +03:00
|
|
|
exception-transformers >= 0.4.0 && < 0.5,
|
2019-08-04 19:49:54 +03:00
|
|
|
primitive >= 0.6.3 && < 0.7,
|
2019-08-04 18:07:12 +03:00
|
|
|
ref-tf >= 0.4.0 && < 0.5,
|
2020-01-11 00:44:04 +03:00
|
|
|
reflex >= 0.6.2 && < 0.7,
|
2019-08-04 18:07:12 +03:00
|
|
|
time >= 1.8.0 && < 1.9,
|
2019-08-04 19:49:54 +03:00
|
|
|
vty >= 5.21 && < 5.26
|
2018-02-26 00:58:54 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2019-02-18 00:20:46 +03:00
|
|
|
ghc-options: -Wall
|
2018-02-27 06:47:07 +03:00
|
|
|
|
|
|
|
executable example
|
|
|
|
hs-source-dirs: src-bin
|
|
|
|
main-is: example.hs
|
2018-10-14 03:28:02 +03:00
|
|
|
ghc-options: -threaded
|
2018-02-27 06:47:07 +03:00
|
|
|
build-depends:
|
|
|
|
base,
|
2018-11-05 04:56:47 +03:00
|
|
|
containers,
|
2018-02-27 06:47:07 +03:00
|
|
|
reflex,
|
|
|
|
reflex-vty,
|
2018-11-03 07:14:07 +03:00
|
|
|
text,
|
2018-02-27 06:47:07 +03:00
|
|
|
time,
|
2018-09-01 19:02:15 +03:00
|
|
|
transformers,
|
2018-02-27 06:47:07 +03:00
|
|
|
vty
|
|
|
|
default-language: Haskell2010
|
2019-08-04 05:37:12 +03:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/reflex-frp/reflex-vty
|