-
Notifications
You must be signed in to change notification settings - Fork 7
/
tidal-vis.cabal
85 lines (73 loc) · 2.55 KB
/
tidal-vis.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: tidal-vis
version: 1.0.15
synopsis: Visual rendering for Tidal patterns and osc messages
homepage: http://yaxu.org/tidal/
license: GPL-3
license-file: LICENSE
author: Alex McLean
maintainer: [email protected]
Stability: Experimental
Copyright: (c) Alex McLean and others, 2019
category: Sound
build-type: Simple
cabal-version: 2.0
--Extra-source-files: README.md tidal.el doc/tidal.md doc/tidal.pdf
Description: Tidal is a domain specific language for live coding pattern. This package allows colour patterns to be rendered as PDF or SVG files.
executable tidal-vis
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
build-depends: base
, tidal-vis
default-language: Haskell2010
library
Exposed-modules: Common
CycleAnimation
Examples
Realtime.Animation
Realtime.Server
Realtime.Types
Vis
VisCycle
VisGradient
VisPart
hs-source-dirs: src
Build-depends: base < 5
, async
, cairo
, colour
, containers
, gloss
, hashable
, hosc
, SDL
, SDL-gfx
, SDL-image
, SDL-ttf
, mtl
, network
, tidal >= 1.0.15 && < 1.7
, time
, unagi-chan
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
default-language: Haskell2010
default-extensions: OverloadedStrings
RecordWildCards
LambdaCase