-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdti.cabal
31 lines (26 loc) · 1005 Bytes
/
dti.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
Name: dti
Version: 0.1
Synopsis: A perl-like interpreter.
Description: Hopefully a nqp interpreter.
License: MIT
License-file: LICENSE
Author: John Harrison
Maintainer: [email protected]
Category: Compilers/Interpreters, Language
Build-type: Simple
Cabal-version: >=1.4
Library
Build-Depends: base >= 4 && < 5, haskell98, array, parsec, containers, mtl, transformers, directory
Extensions: ExistentialQuantification
Hs-Source-Dirs: src
Exposed-Modules: Language.Perl.Core
Language.Perl.Types
Language.Perl.Variables
Other-Modules: Language.Perl.Macro
Language.Perl.Parser
Language.Perl.Numeric
Language.Perl.Primitives
Executable dti
Main-is: shell.hs
Hs-Source-Dirs: src
Build-depends: base, parsec, containers, mtl, transformers, haskeline