-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyampa-canvas.cabal
62 lines (58 loc) · 2.18 KB
/
yampa-canvas.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: yampa-canvas
version: 0.2.4
synopsis: blank-canvas frontend for Yampa
description: @blank-canvas@ frontend for @Yampa@
license: BSD3
license-file: LICENSE
author: Neil Sculthorpe
maintainer: [email protected]
copyright: Copyright (c) 2014 The University of Kansas
category: Graphics
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.6
, GHC == 9.8.4
, GHC == 9.10.1
, GHC == 9.12.1
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/ku-fpg/yampa-canvas
library
exposed-modules: FRP.Yampa.Canvas
other-extensions: ScopedTypeVariables
build-depends: base >= 4.9 && < 4.22,
blank-canvas >= 0.5 && < 0.8,
stm >= 2.4 && < 2.6,
time >= 1.4 && < 1.15,
Yampa >= 0.9.6 && < 0.15
hs-source-dirs: src
default-language: Haskell2010
flag example
Description: Please build the example
Default: False
executable yampa-canvas-bouncing-balls
if flag(example)
buildable: True
else
buildable: False
build-depends: base >= 4.9 && < 4.22,
blank-canvas >= 0.5 && < 0.8,
simple-affine-space >= 0.1 && < 0.3,
text >= 1.1 && < 2.2,
Yampa >= 0.13 && < 0.15,
yampa-canvas
main-is: DropBalls.hs
other-modules: BouncingBalls
hs-source-dirs: example
default-language: Haskell2010
ghc-options: -Wall -threaded