-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
49 lines (42 loc) · 1011 Bytes
/
package.yaml
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
name: audio-dsp
version: 0.0.0.0
github: "unclechu/haskell-audio-dsp"
license: GPL-3
author: "Viacheslav Lotsmanov"
maintainer: "[email protected]"
copyright: "2018 Viacheslav Lotsmanov"
category: Audio
synopsis: Short description of your package
description:
Please see the README on GitHub at <https://github.com/unclechu/haskell-audio-dsp#readme>
extra-source-files:
- README.md
dependencies:
- array
- base >= 4.7 && < 5
- base-unicode-symbols
- data-default
- explicit-exception
- jack
- primitive
- vty
ghc-options:
- -O2
library:
source-dirs: src
executables:
thick-distortion.jack:
main: Main.hs
source-dirs: ThickDistortion
ghc-options:
- -threaded
dependencies:
- audio-dsp
tests:
audio-dsp-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
dependencies:
- audio-dsp