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
|
-- Initial trivmix.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: trivmix
version: 2.5.1
-- synopsis:
-- description:
license: PublicDomain
license-file: LICENSE
author: Gregor Kleen
maintainer: aethoago@141.li
-- copyright:
category: Sound
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Trivmix.Types
build-depends: base >=4.7 && <4.8
, data-default >=0.5 && <1
, case-insensitive >=1.2 && <2
executable trivmix
main-is: Trivmix.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8
, jack >=0.7 && <1
, optparse-applicative >=0.11 && <1
, directory >=1.2 && <2
, filepath >=1.3 && <2
, unix >=2.7 && <3
, hinotify >=0.3 && <1
, transformers >=0.3 && <1
, explicit-exception >=0.1 && <1
, process >=1.2 && <2
, filelock >=0.1 && <1
, trivmix
hs-source-dirs: trivmix
default-language: Haskell2010
ghc-options: -threaded
executable adjmix
main-is: Adjmix.hs
build-depends: base >=4.7 && <4.8
, optparse-applicative >=0.11 && <1
, filepath >=1.3 && <2
, trivmix
hs-source-dirs: adjmix
default-language: Haskell2010
-- Local Variables:
-- firestarter: "nix-shell -p haskellPackages.cabal2nix --command 'cabal2nix ./.' | tee trivmix.nix"
-- End:
|