forked from mfourne/prolog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
77 lines (70 loc) · 1.51 KB
/
package.yaml
File metadata and controls
77 lines (70 loc) · 1.51 KB
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
73
74
75
76
77
name: prolog
version: 0.4.2
synopsis: A Prolog interpreter written in Haskell.
description: A Prolog interpreter written in Haskell. Implements a subset of the Prolog language.
license: PublicDomain
author: Matthias Bartsch
maintainer: Marcel Fourné (haskell@marcelfourne.de)
category: Language
build-type: Simple
github: mfourne/prolog
dependencies:
- base >=4 && <5
- parsec >= 3.1.1
- syb >= 0.3
- mtl >= 2.0.1.0
- containers
- pipes
- template-haskell
- th-lift >=0.5.3
- transformers >=0.2.2.0
ghc-options:
- -Wall
- -Wincomplete-uni-patterns
- -Werror=incomplete-uni-patterns
- -Werror=incomplete-patterns
library:
source-dirs: src
exposed-modules:
- Language.Prolog
- Language.Prolog.IsString
- Language.Prolog.Quote
executables:
prolog-interpreter:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- prolog
- haskeline
tests:
spec:
source-dirs: specs
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- prolog
- directory
- filepath
- HUnit
- ansi-terminal
benchmarks:
bench:
source-dirs: bench
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- prolog
- deepseq