-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathprolog.cabal
35 lines (31 loc) · 874 Bytes
/
prolog.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
Name: prolog
Version: 0.1
Synopsis: A Prolog interpreter written in Haskell.
License: PublicDomain
Author: Matthias Bartsch
Maintainer: [email protected]
Category: Language
Build-type: Simple
Cabal-version: >=1.2
Library
Exposed-modules: Language.Prolog
Language.Prolog.IsString
Language.Prolog.Quote
Other-modules: Prolog
Interpreter
Database
Unifier
Parser
Syntax
IsString
Quote
Hs-Source-Dirs: src
Build-depends:
base >=4 && <5,
parsec >= 3.1.1,
syb >= 0.3,
mtl >= 2.0.1.0,
containers >=0.4,
template-haskell,
th-lift >=0.5.3,
transformers >=0.2.2.0