summaryrefslogtreecommitdiff
path: root/trivmix.cabal
blob: 962edd67fe707c2fb045263f02f9fdf4bea69727 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name:           trivmix
version:        4.0.0
category:       Sound
author:         Gregor Kleen <aethoago@141.li>
license:        PublicDomain
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

source-repository head
  type: git
  location: https://git.yggdrasil.li/gkleen/pub/trivmix

library
  exposed-modules:
      Trivmix.Types
  other-modules:
      Data.Scientific.Lift
      Paths_trivmix
  hs-source-dirs:
      src
  build-depends:
      base >=4.8 && <5
    , case-insensitive >=1.2 && <2
    , data-default >=0.5 && <1
    , refined >=0.1.2.1 && <1
    , scientific >=0.3.6.2 && <1
    , th-lift >=0.7.10 && <1
  default-language: Haskell2010

executable adjmix
  main-is: Adjmix.hs
  other-modules:
      Paths_trivmix
  hs-source-dirs:
      adjmix
  build-depends:
      base >=4.8 && <5
    , filelock >=0.1 && <1
    , filepath >=1.3 && <2
    , optparse-applicative >=0.11 && <1
    , trivmix
  default-language: Haskell2010

executable trivmix
  main-is: Trivmix.hs
  other-modules:
      Paths_trivmix
  hs-source-dirs:
      trivmix
  build-depends:
      base >=4.8 && <5
    , directory >=1.2 && <2
    , explicit-exception >=0.1 && <1
    , filelock >=0.1 && <1
    , filepath >=1.3 && <2
    , heredoc >=0.2.0.0 && <1
    , hinotify >=0.3 && <1
    , jack >=0.7 && <1
    , optparse-applicative >=0.11 && <1
    , process >=1.2 && <2
    , refined >=0.1.2.1 && <1
    , systemd >=1.1.2 && <2
    , transformers >=0.3 && <1
    , trivmix
    , unix >=2.7 && <3
  default-language: Haskell2010