-
Notifications
You must be signed in to change notification settings - Fork 1
/
opl.cabal
72 lines (70 loc) · 2.6 KB
/
opl.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
author: David Darais
build-type: Simple
cabal-version: >= 1.10
category: Language
extra-source-files: README.md
license-file: LICENSE
license: CCPL
maintainer: [email protected]
name: opl
synopsis: Operad Programming Language
version: 0.1.0.0
library
build-depends: base == 4.6.*
, parsec == 3.1.*
, text == 1.1.*
, data-lens-template == 2.1.*
, darais-fp == 0.1.*
, mtl == 2.1.*
, ansi-terminal == 0.6.*
, containers == 0.5.*
default-extensions: FlexibleContexts
, StandaloneDeriving
, TemplateHaskell
, ConstraintKinds
, TupleSections
, GeneralizedNewtypeDeriving
, TypeFamilies
, OverloadedStrings
, InstanceSigs
, ScopedTypeVariables
, MultiParamTypeClasses
, FunctionalDependencies
default-language: Haskell2010
exposed-modules: Lang.OPL.Lexer
Lang.OPL.Parser
, Lang.OPL.Syntax
, Lang.OPL.Semantics
, Lang.OPL.Common
, Lang.OPL.Check
, Lang.OPL.CheckMonad
, Lang.OPL.Message
, Lang.OPL.Annotated
other-modules: Util.Parsec
, Util.Either
hs-source-dirs: src
executable opl
build-depends: base == 4.6.*
, opl == 0.1.*
, parsec == 3.1.*
, text == 1.1.*
, data-lens-template == 2.1.*
, darais-fp == 0.1.*
, mtl == 2.1.*
, ansi-terminal == 0.6.*
, containers == 0.5.*
default-extensions: FlexibleContexts
, StandaloneDeriving
, TemplateHaskell
, ConstraintKinds
, TupleSections
, GeneralizedNewtypeDeriving
, TypeFamilies
, OverloadedStrings
, InstanceSigs
, ScopedTypeVariables
, MultiParamTypeClasses
, FunctionalDependencies
default-language: Haskell2010
hs-source-dirs: src
main-is: Lang/OPL/Main.hs