File tree Expand file tree Collapse file tree 1 file changed +17
-9
lines changed Expand file tree Collapse file tree 1 file changed +17
-9
lines changed Original file line number Diff line number Diff line change 1
1
cabal-version : 3.6
2
2
name : bearlibterminal
3
3
version : 0.1.0.0
4
- synopsis : Low-level Haskell bindings to the bearlibterminal graphics library .
5
- description : Low-level Haskell bindings to the bearlibterminal graphics library .
4
+ synopsis : Low-level Haskell bindings to the BearLibTerminal graphics library .
5
+ description :
6
+ A Haskell wrapper for a graphics library for making roguelike-style games.
7
+ From the [BearLibTerminal documentation](http://foo.wyrd.name/en:bearlibterminal) :
8
+ BearLibTerminal is a library that creates a terminal-like window facilitating flexible textual output and uncomplicated input processing.
9
+ A lot of roguelike games intentionally use aesthetic textual or pseudographic visual style. However, native output via the command line
10
+ interface usually has a few annoying shortcomings such as low speed or palette and font restrictions.
11
+ Using an extended character set (several languages at once or complicated pseudographics) may also be tricky. BearLibTerminal solves
12
+ that by providing its own window with a grid of character cells and simple yet powerful API for configuration and textual output.
13
+
6
14
homepage : https://github.com/PPKFS/bearlibterminal-hs
7
15
bug-reports : https://github.com/PPKFS/bearlibterminal-hs/issues
8
16
license : MIT
@@ -62,13 +70,13 @@ library
62
70
executable omni
63
71
import : common-options
64
72
build-depends :
65
- time
66
- , vector
67
- , random
68
- , bearlibterminal
69
- , word8
70
- , containers
71
- , formatting
73
+ bearlibterminal >= 0.1.0.0 && <= 0.2.0.0 ,
74
+ containers >= 0.6.8 && < 1 ,
75
+ formatting >= 7.2.0 && < 8 ,
76
+ time >= 1.12.2 && < 2 ,
77
+ random >= 1.3.0 && < 2 ,
78
+ vector >= 0.13.2 && < 1 ,
79
+ word8 >= 0.1.3 && < 1 ,
72
80
hs-source-dirs : omni
73
81
main-is : Main.hs
74
82
other-modules :
You can’t perform that action at this time.
0 commit comments