-
Notifications
You must be signed in to change notification settings - Fork 1
/
Robin.cabal
39 lines (37 loc) · 1.37 KB
/
Robin.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
-- Initial Robin.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: Robin
version: 0.8
synopsis: Experimental language where both functions and macros are defined in terms of fexprs
-- description:
homepage: https://catseye.tc/node/Robin
license: BSD3
license-file: LICENSE
author: Chris Pressey
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
extra-source-files: HISTORY.md, README.md
cabal-version: >=1.10
executable robin
main-is: Main.hs
other-modules:
Language.Robin.Builtins
Language.Robin.CmdLine
Language.Robin.Env
Language.Robin.Eval
Language.Robin.EventLoop
Language.Robin.Expr
Language.Robin.Facilities
Language.Robin.Facilities.Concurrent
Language.Robin.Facilities.LineTerminal
Language.Robin.Facilities.RandomSource
Language.Robin.Intrinsics
Language.Robin.Parser
Language.Robin.Reactor
Language.Robin.TopLevel
other-extensions: FlexibleContexts
build-depends: base >=4.9 && <=4.16, QuickCheck >=2.13 && <2.14, random >=1.1 && <1.2, parsec >=3.1 && <3.2
hs-source-dirs: src
default-language: Haskell98