-
Notifications
You must be signed in to change notification settings - Fork 5
/
astview.cabal
executable file
·110 lines (103 loc) · 3.72 KB
/
astview.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
Name: astview
Version: 0.5
License: MIT
License-File: LICENSE
Author:
Pascal Hof <[email protected]>,
Sebastian Menge <[email protected]>
Maintainer: Pascal Hof <[email protected]>
Synopsis: A GTK-based abstract syntax tree viewer for custom
languages and parsers
Description:
Astview is a graphical viewer for abstract
syntax trees. It is implemented on the basis
of scrap-your-boilerplate (i.e. data2tree)
and works with all parsers that generate trees
that are instances of the Data.Data class.
Homepage: https://github.com/pascalh/Astview
Category: Language
Cabal-Version: >= 1.8
Build-Type: Simple
Tested-with: GHC==7.10.1
Data-Files: data/astview.xml,
data/menu.xml,
LICENSE
Source-repository head
type: git
location: https://github.com/pascalh/Astview
Library
GHC-Options: -Wall
-fno-warn-unused-do-bind
-fno-warn-wrong-do-bind
-fno-warn-hi-shadowing
-fno-warn-name-shadowing
Hs-Source-Dirs: src/core
Exposed-Modules: Language.Astview.Language
Language.Astview.SmallestSrcLocContainingCursor
Language.Astview.DataTree
Language.Astview.Languages
Other-Modules: Language.Astview.Languages.Haskell
Language.Astview.Languages.HaskellCore
Language.Astview.Languages.Python
Build-Depends: base >= 4.6.0.0
, containers == 0.5.*
, QuickCheck >= 2.6
, haskell-src-exts >= 1.13.5
, language-python
, syb >= 0.3.7
, syz
, ghc
, ghc-paths == 0.1.*
extensions: FlexibleInstances,
DeriveDataTypeable,
RankNTypes
Executable astview
Hs-Source-Dirs: src/gui
Main-is: Main.hs
GHC-Options: -Wall
-fno-warn-unused-do-bind
-fno-warn-wrong-do-bind
-fno-warn-hi-shadowing
-fno-warn-name-shadowing
Other-Modules: Language.Astview.Gui.Actions
Language.Astview.Gui.GtkActions
Language.Astview.Gui.Init
Language.Astview.Gui.Menu
Language.Astview.Gui.Types
Build-Depends: base
, astview
, filepath >= 1.3
, bytestring >= 0.10.0.0
, Glob >= 0.7.2
, containers
, QuickCheck
, glib >= 0.13
, gtk3 >= 0.13
, gtksourceview3 >= 0.13
, directory >= 1.2.0.0
, mtl >=2.1.2
, fclabels >= 2.0.0.5
extensions: TemplateHaskell
, TypeOperators
, ScopedTypeVariables
, OverloadedStrings
, DoAndIfThenElse
, CPP
test-suite basic
type: exitcode-stdio-1.0
Hs-Source-Dirs: test
main-is: Main.hs
Other-Modules: DataTree
SmallestSrcLocContainingCursor
SourceLocation
build-depends: base,
astview,
containers,
syb,
control-monad-omega >= 0.3,
tasty,
tasty-hunit,
tasty-quickcheck,
QuickCheck
extensions: DeriveDataTypeable,
DeriveFunctor