-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathreflex-gloss.cabal
36 lines (32 loc) · 1.36 KB
/
reflex-gloss.cabal
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
35
36
name: reflex-gloss
version: 0.2
synopsis: An reflex interface for gloss.
description: This package exports a simple wrapper, in terms of
Graphics.Gloss.Interface.IO.Game, that allows full
control of the picture generated by Gloss as a
Behavior, as well as providing access to
Gloss' clock and input-handling functionality as
Events.
homepage: https://github.com/reflex-frp/reflex-gloss
bug-reports: https://github.com/reflex-frp/reflex-gloss/issues
license: BSD3
license-file: LICENSE
author: Jeffrey Rosenbluth
maintainer: jeffrey.rosenbluth@gmail.com
copyright: 2015 Jeffrey Rosenbluth
category: Graphics
build-type: Simple
cabal-version: >=1.10
tested-with:
GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.10.7,
GHCJS ==8.4
library
exposed-modules: Reflex.Gloss
build-depends: base >=4.6 && <4.15,
gloss >= 1.10.2.5 && < 1.14,
reflex >=0.5 && <0.9,
dependent-sum >= 0.3.2.1 && < 0.8,
transformers >= 0.4.2 && < 0.7,
mtl >=2.2.1 && < 2.3
hs-source-dirs: src
default-language: Haskell2010