about summary refs log tree commit diff
path: root/likely-music.cabal
blob: 4ab02bd7a16e24282fb9da7ece2155da77c28137 (plain) (blame)
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
name:                likely-music
version:             0.1.0.0
-- synopsis:            
-- description:         
license:             AGPL-3
license-file:        COPYING
author:              sternenseemann
maintainer:          git@lukasepple.de
-- copyright:           
category:            Sound
build-type:          Simple
extra-source-files:  ChangeLog.md
                   , README.md
cabal-version:       >=1.10

library
  exposed-modules:     Sound.Likely
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base
                     , Euterpea
                     , containers
                     , PortMidi
                     , random
                     , text
                     , aeson
  hs-source-dirs:      lib
  default-language:    Haskell2010

executable likely-music-backend
  default-language:    Haskell2010
  hs-source-dirs:      backend
  main-is:             Main.hs
  other-modules:       Api
  build-depends:       base
                     , likely-music
                     , aeson
                     , containers
                     , Euterpea
                     , text
                     , bytestring
                     , servant
                     , servant-server
                     , wai
                     , wai-app-static
                     , warp
                     , HCodecs
                     , random
                     , process
                     , directory
                     , filepath