forked from tidalcycles/Tidal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtidal.cabal
90 lines (79 loc) · 2.58 KB
/
tidal.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
name: tidal
version: 1.0.6
synopsis: Pattern language for improvised music
-- description:
homepage: http://tidalcycles.org/
license: GPL-3
license-file: LICENSE
author: Alex McLean
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
Stability: Experimental
Copyright: (c) Tidal contributors, 2018
category: Sound
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.3
Extra-source-files: README.md CHANGELOG.md tidal.el
Description: Tidal is a domain specific language for live coding pattern.
library
if impl(ghc == 8.4.4)
cpp-options: -DTIDAL_SEMIGROUP
ghc-options: -Wall
hs-source-dirs:
src
default-language: Haskell2010
Exposed-modules: Sound.Tidal.Bjorklund
Sound.Tidal.Chords
Sound.Tidal.Config
Sound.Tidal.Control
Sound.Tidal.Context
Sound.Tidal.Core
Sound.Tidal.MiniTidal
Sound.Tidal.Params
Sound.Tidal.ParseBP
Sound.Tidal.Pattern
Sound.Tidal.Scales
Sound.Tidal.Simple
Sound.Tidal.Stream
Sound.Tidal.Tempo
Sound.Tidal.Transition
Sound.Tidal.UI
Sound.Tidal.Utils
Sound.Tidal.EspGrid
Build-depends:
base < 5
, containers < 0.7
, colour < 2.4
, hosc < 0.18
, text < 1.3
, parsec < 3.2
, network < 2.9
, mwc-random < 0.15
, vector < 0.13
, bifunctors < 5.6
if !impl(ghc >= 8.4.1)
build-depends: semigroups == 0.18.*
test-suite tests
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs:
test
ghc-options: -Wall
other-modules: Sound.Tidal.ControlTest
Sound.Tidal.CoreTest
Sound.Tidal.MiniTidalTest
Sound.Tidal.ParseTest
Sound.Tidal.PatternTest
Sound.Tidal.UITest
Sound.Tidal.UtilsTest
TestUtils
build-depends:
base ==4.*
, microspec >= 0.2.0.1
, containers
, parsec
, tidal
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/tidalcycles/Tidal