-
Notifications
You must be signed in to change notification settings - Fork 0
/
cnoidal.cabal
43 lines (36 loc) · 1.36 KB
/
cnoidal.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
Name: cnoidal
Version: 0.1.0.0
Synopsis: represent, transform and live code music
Description:
/Cnoidal/ is a library for representing, transforming and live coding music.
.
It is based on the notion of /temporal media/, a data type that
represents a collection of time intervals tagged with values.
It supports various functor instances, like Applicative Functor,
which are highly useful for live coding.
Category: Music
License: BSD3
License-file: LICENSE
Author: Heinrich Apfelmus
Maintainer: Heinrich Apfelmus <apfelmus at quantentunnel de>
Homepage: https://github.com/HeinrichApfelmus/cnoidal
Copyright: (c) Heinrich Apfelmus 2019
build-type: Simple
cabal-version: >= 1.6
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: git://github.com/HeinrichApfelmus/cnoidal.git
Library
hs-source-dirs: src
build-depends: base >= 4.5 && < 4.14,
containers >= 0.4 && < 0.7,
PortMidi == 0.2.*
-- ghc-options: -Wall -fno-warn-missing-signatures
exposed-modules:
Cnoidal,
Cnoidal.Media,
Cnoidal.Music,
Cnoidal.Player