forked from mfourne/prolog-graph-lib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprolog-graph-lib.cabal
61 lines (56 loc) · 1.75 KB
/
prolog-graph-lib.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: prolog-graph-lib
version: 0.3.2.0
synopsis: Generating images of resolution trees for Prolog queries.
description: This is the library part (See <http://hackage.haskell.org/package/prolog-graph> for the command line tool).
category: Language
homepage: https://github.com/fmidue/prolog-graph-lib#readme
bug-reports: https://github.com/fmidue/prolog-graph-lib/issues
author: Matthias Bartsch
maintainer: Oliver Westphal (oliver.westphal <at> uni-due.de)
license: PublicDomain
build-type: Simple
source-repository head
type: git
location: https://github.com/fmidue/prolog-graph-lib
library
exposed-modules:
Language.Prolog.GraphViz
Language.Prolog.GraphViz.Formatting
other-modules:
Paths_prolog_graph_lib
hs-source-dirs:
src
ghc-options: -Wall -Wincomplete-uni-patterns -Werror=incomplete-uni-patterns -fdefer-typed-holes
build-depends:
base ==4.*
, bytestring
, fgl >=5.4.2.4
, graphviz >=2999.12.0.3
, mtl >=2.0.1.0
, prolog >=0.2.1
, text >=0.11.1.5
default-language: Haskell2010
executable prolog-graph
main-is: Main.hs
other-modules:
ParseArgs
Paths_prolog_graph_lib
hs-source-dirs:
prolog-graph
ghc-options: -Wall -Wincomplete-uni-patterns -Werror=incomplete-uni-patterns -fdefer-typed-holes -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
base ==4.*
, bytestring
, cmdargs >=0.8
, fgl >=5.4.2.4
, graphviz >=2999.12.0.3
, mtl >=2.0.1.0
, parsec
, prolog >=0.2.1
, prolog-graph-lib
, text >=0.11.1.5
default-language: Haskell2010