-
Notifications
You must be signed in to change notification settings - Fork 0
/
apollo.cabal
51 lines (44 loc) · 1.59 KB
/
apollo.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
name: apollo
version: 0.0.3.0
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
homepage: https://github.com/apollo-lang/apollo
license: MIT
license-file: LICENSE
synopsis: A programming language for algorithmic and musical composition.
author: Ben Kogan
, Javier Llaca
, Reza Nayebi
, Roberto Jose De Amorim
, Souren Papazian
executable apollo
main-is: Main.hs
other-modules: Check
, Env
, Error
, Eval
, Expr
, Lib
, Lex
, Parse
, Paths_apollo
, Util
, Midi
, Type
, Version
build-depends: base >=4.6 && <4.9
, regex-posix >=0.95 && <0.96
, mtl >=2.1 && <2.3
, array >=0.5 && <0.6
, transformers >=0.3 && <0.5
, containers >=0.5 && <0.6
, HCodecs >=0.5 && <0.6
, random >=1.0 && <1.2
other-extensions: CPP
hs-source-dirs: src
build-tools: alex >= 3.1 && <3.2
, happy >= 1.19 && <1.20
default-language: Haskell2010
ghc-options: -Wall