-
Notifications
You must be signed in to change notification settings - Fork 3
/
djembe.cabal
44 lines (41 loc) · 1.35 KB
/
djembe.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
-- Initial djembe.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: djembe
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: Reed Rosenbluth
maintainer: [email protected]
-- copyright:
category: Sound
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Types,
Play,
Interpret,
Drum
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.9
,lens >=4.7 && <4.14
,hmidi >= 0.2.1 && <3.0
,random >=1.0 && <1.2
,QuickCheck >=2.7 && <2.9
,hspec >=2.1 && <2.3
,mtl
hs-source-dirs: src
default-language: Haskell2010
test-suite djembe-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
,hspec
,QuickCheck
,djembe
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010