1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Name: vty
Version: 3.0.1
License: BSD3
License-file: LICENSE
Author: Stefan O'Rear
Maintainer: Stefan O'Rear <stefanor@cox.net>
Category: User Interfaces
Synopsis: A simple terminal access library
Description:
vty is a *very* simplistic library in the niche of ncurses. It is intended
to be easy to use, have no confusing corner cases, and good support for common
terminal types.
.
If you want to use it, currently the best reference is the test module (Test.hs).
.
Notable infelicities: requires an ANSI-type terminal, poor efficiency,
requires Linux\/xterm style UTF8 support.
.
© 2006-2007 Stefan O'Rear; BSD3 license.
Build-Depends: base>3, bytestring, containers, unix
Build-Type: Simple
Data-Files: README, TODO
Extra-Source-Files: test/Test.hs, cbits/gwinsz.h, test/Bench.hs
Exposed-Modules: Graphics.Vty
C-Sources: cbits/gwinsz.c
Include-Dirs: cbits
Install-Includes: gwinsz.h
Other-Modules: Graphics.Vty.Types, Graphics.Vty.Cursor, Graphics.Vty.LLInput
ghc-options: -funbox-strict-fields -Wall
ghc-prof-options: -funbox-strict-fields -auto-all -Wall
|