reflex-vty/reflex-vty.cabal

72 lines
2.3 KiB
Plaintext
Raw Normal View History

2018-02-26 00:58:54 +03:00
name: reflex-vty
2020-05-08 19:06:56 +03:00
version: 0.1.4.0
2020-06-15 20:57:27 +03:00
synopsis: Reflex FRP host and widgets for VTY applications
2018-11-05 10:38:32 +03:00
description:
2020-06-15 20:57:27 +03:00
Build terminal applications using functional reactive programming (FRP) with Reflex FRP (<https://reflex-frp.org>).
2018-11-05 10:38:32 +03:00
.
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
author: Obsidian Systems LLC
maintainer: maintainer@obsidian.systems
2020-01-10 20:12:42 +03:00
copyright: 2020 Obsidian Systems LLC
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
extra-source-files: README.md
ChangeLog.md
2020-06-15 21:00:31 +03:00
extra-doc-files: doc/tasks.png
2020-05-08 07:32:37 +03:00
tested-with: GHC ==8.8.3 || ==8.6.5 || ==8.4.4
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
, Reflex.Vty.Widget.Layout
, Data.Text.Zipper
, Reflex.Class.Switchable
, Reflex.Spider.Orphans
, Control.Monad.NodeId
2018-02-26 00:58:54 +03:00
build-depends:
2020-05-08 07:32:37 +03:00
base >= 4.10.0 && < 4.14,
bimap >= 0.3.3 && < 0.4,
containers >= 0.5.0 && < 0.7,
2019-08-04 18:07:12 +03:00
mtl >= 2.2.2 && < 2.3,
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,
dependent-map >= 0.2.4 && < 0.4,
text >= 1.2.3 && < 1.3,
text-icu >= 0.7 && < 0.8,
dependent-sum >= 0.3 && < 0.7,
2019-08-04 18:07:12 +03:00
exception-transformers >= 0.4.0 && < 0.5,
2020-05-08 07:32:37 +03:00
primitive >= 0.6.3 && < 0.8,
2019-08-04 18:07:12 +03:00
ref-tf >= 0.4.0 && < 0.5,
2020-05-08 07:32:37 +03:00
reflex >= 0.6.2 && < 0.8,
time >= 1.8.0 && < 1.10,
vty >= 5.21 && < 5.29
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
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
2019-08-04 05:37:12 +03:00
source-repository head
type: git
location: https://github.com/reflex-frp/reflex-vty