forked from mpitid/scheme48
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scheme48.cabal
35 lines (32 loc) · 1.22 KB
/
scheme48.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
-- Initial scheme48.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: scheme48
version: 0.0.1
synopsis: https://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours
-- description:
license: MIT
license-file: LICENSE
author: Michael Pitidis
-- maintainer:
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Scheme48
Scheme48.Main
Scheme48.Core
Scheme48.Parser
Scheme48.Environment
Scheme48.Interpreter
other-extensions: ExistentialQuantification
build-depends: base >=4.8 && <4.9, mtl >=2.2 && <2.3, parsec >=3.1 && <3.2
default-language: Haskell2010
executable scheme48
main-is: Main.hs
-- other-modules:
other-extensions: ExistentialQuantification
build-depends: scheme48, base >=4.8 && <4.9, mtl >=2.2 && <2.3, parsec >=3.1 && <3.2
default-language: Haskell2010