-
Notifications
You must be signed in to change notification settings - Fork 4
/
Bang.cabal
50 lines (46 loc) · 1.18 KB
/
Bang.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: 2817f0d6ec1f9ebd052c340c331fe9c506201f88df9a5cea106102828e610430
name: Bang
version: 0.2.0.0
synopsis: A Drum Machine DSL for Haskell
description: This library consists of a DSL for piecing together drum compositions.
category: Music
homepage: https://github.com/5outh/Bang#readme
bug-reports: https://github.com/5outh/Bang/issues
maintainer: Benjamin Kovach <[email protected]>
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/5outh/Bang
library
exposed-modules:
Bang
Bang.Experimental.SequentialDo
Bang.Interface
Bang.Interface.Base
Bang.Interface.Drum
Bang.Interpreter
Bang.Music
Bang.Music.Class
Bang.Music.Operators
Bang.Music.Transform
other-modules:
Paths_Bang
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base
, bifunctors
, hmidi
, mtl
, stm
, time
, transformers
default-language: Haskell2010