forked from vivid-synth/vivid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmtv.cabal
139 lines (134 loc) · 4.2 KB
/
mtv.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
cabal-version: 3.8
name: mtv
version: 0.1.0.0
description: https://github.com/JeffreyBenjaminBrown/montevideo
homepage: https://github.com/JeffreyBenjaminBrown/montevideo
bug-reports: https://github.com/JeffreyBenjaminBrown/montevideo/issues
author: Jeffrey Benjamin Brown
maintainer: [email protected]
copyright: Jeffrey Benjamin Brown
license: GPL-3.0-or-later
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/jeffreybenjaminbrown/montevideo/
library
exposed-modules:
Montevideo.Dispatch.Abbrevs
, Montevideo.Dispatch.Config
, Montevideo.Dispatch.Dispatch
, Montevideo.Dispatch.Join
, Montevideo.Dispatch.Join.Internal
, Montevideo.Dispatch.Lazy.Intervals
, Montevideo.Dispatch.Lazy.Points
, Montevideo.Dispatch.Lazy.Test.Intervals
, Montevideo.Dispatch.Lazy.Test.Points
, Montevideo.Dispatch.Lazy.Util
, Montevideo.Dispatch.Msg.Act
, Montevideo.Dispatch.Museq
, Montevideo.Dispatch.Museq.Mk
, Montevideo.Dispatch.Recording
, Montevideo.Dispatch.Time
, Montevideo.Dispatch.Transform
, Montevideo.Dispatch.Types
, Montevideo.Dispatch.Types.Functions
, Montevideo.Dispatch.Types.Many
, Montevideo.Dispatch.Types.Time
, Montevideo.EarTrain
, Montevideo.EarTrain.Audio
, Montevideo.EarTrain.Types
, Montevideo.JI.Grid
, Montevideo.JI.Lib
, Montevideo.JI.Notation
, Montevideo.JI.Thanos.SearchParams
, Montevideo.JI.Thanos.Test
, Montevideo.JI.Thanos.Thanos
, Montevideo.JI.Thanos.Thanos2
, Montevideo.JI.Thanos.Thanos3
, Montevideo.JI.Thanos.Types
, Montevideo.JI.Thanos.Util
, Montevideo.JI.Types
, Montevideo.Monome.Config.Monome
, Montevideo.Monome.Config.Mtv
, Montevideo.Monome.EdoMath
, Montevideo.Monome.Main
, Montevideo.Monome.Network.ListenAndLogOsc
, Montevideo.Monome.Network.Monome
, Montevideo.Monome.Network.Util
, Montevideo.Monome.Presets
, Montevideo.Monome.Test.Data
, Montevideo.Monome.Test.EdoMath
, Montevideo.Monome.Test.JI
, Montevideo.Monome.Test.Misc
, Montevideo.Monome.Test.Sustain
, Montevideo.Monome.Test.Types.Params
, Montevideo.Monome.Test.Windows
, Montevideo.Monome.Types
, Montevideo.Monome.Types.Device
, Montevideo.Monome.Types.Edo
, Montevideo.Monome.Types.Instances
, Montevideo.Monome.Types.Monome
, Montevideo.Monome.Types.Most
, Montevideo.Monome.Types.Params
, Montevideo.Monome.Util
, Montevideo.Monome.Util.OSC
, Montevideo.Monome.Window.Change
, Montevideo.Monome.Window.ChordBank.Bank
, Montevideo.Monome.Window.ChordBank.Function
, Montevideo.Monome.Window.JI
, Montevideo.Monome.Window.Keyboard.Keyboard
, Montevideo.Monome.Window.Keyboard.Shift
, Montevideo.Monome.Window.Keyboard.Sustain
, Montevideo.Monome.Window.Param.Group
, Montevideo.Monome.Window.Param.SimpleVal
, Montevideo.Monome.Window.Param.Val
, Montevideo.Monome.Window.Record
, Montevideo.Monome.Window.Util
, Montevideo.ReadHsAsGhci
, Montevideo.Scale
, Montevideo.Synth
, Montevideo.Synth.Axe
, Montevideo.Synth.Config
, Montevideo.Synth.Envelope
, Montevideo.Synth.Msg
, Montevideo.Synth.Samples
, Montevideo.Synth.Vap
, Montevideo.Synth.Vivid_Demo
, Montevideo.Synth.Zot
, Montevideo.Test
, Montevideo.Test.Dispatch
, Montevideo.Test.Recording
, Montevideo.Test.Util
, Montevideo.Types
, Montevideo.Util
, Montevideo.Util.Edo
, Montevideo.Vivid.LongVarLists
other-modules:
build-depends:
Decimal
, HUnit
, NumInstances
, base
, bimap
, bytestring
, containers
, either
, extra
-- just for minimumOn
, lens
, megaparsec
, network
, pretty-simple
, random
, text
, vector
, vector-algorithms
, vivid
-- PITFALL: For some reason Cabal screws this up on its own,
-- so I've downloaded the latest copy of vivid (0.5.2.0) from hackage,
-- and pointed to it in the new cabal.project file for this repo.
, vivid-osc
, vivid-supercollider
default-extensions:
default-language: GHC2021