File: tidal.cabal

package info (click to toggle)
haskell-tidal 0.9.10-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 368 kB
  • sloc: haskell: 3,043; lisp: 426; makefile: 5
file content (85 lines) | stat: -rw-r--r-- 2,403 bytes parent folder | download
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
version:             0.9.10
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, 2017
category:            Sound
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 7.10.3, GHC == 8.0.1, GHC == 8.4.1

Extra-source-files: README.md CHANGELOG.md tidal.el doc/tidal.md

Description: Tidal is a domain specific language for live coding pattern.

library
  if impl(ghc == 8.4.1)
    cpp-options: -DTIDAL_SEMIGROUP

  default-language:    Haskell2010

  Exposed-modules:     Sound.Tidal.Bjorklund
                       Sound.Tidal.Strategies
                       Sound.Tidal.Dirt
                       Sound.Tidal.Pattern
                       Sound.Tidal.Stream
                       Sound.Tidal.OscStream
                       Sound.Tidal.Parse
                       Sound.Tidal.Tempo
                       Sound.Tidal.Time
                       Sound.Tidal.Context
                       Sound.Tidal.Utils
                       Sound.Tidal.SuperCollider
                       Sound.Tidal.Params
                       Sound.Tidal.Transition
                       Sound.Tidal.EspGrid
                       Sound.Tidal.MultiMode
                       Sound.Tidal.Scales
                       Sound.Tidal.Chords
                       Sound.Tidal.Sieve
                       Sound.Tidal.Version
                       Sound.Tidal.Simple
                       -- Sound.Tidal.PatternList

  Build-depends:
      base < 5
    , containers
    , hashable
    , colour
    , hosc >= 0.16
    , text
    , mersenne-random-pure64
    , time
    , parsec
    , safe
    , websockets > 0.8
    , mtl >= 2.1
    , monad-loops

  if !impl(ghc >= 8.4.1)
    build-depends: semigroups == 0.18.*

source-repository head
  type:     git
  location: https://github.com/tidalcycles/Tidal

test-suite test
  default-language:
    Haskell2010
  type:
    exitcode-stdio-1.0
  hs-source-dirs:
    tests
  main-is:
    test.hs
  build-depends:
      base >= 4 && < 5
              , tasty 
              , tasty-hunit
    , tidal