forked from JakeWheat/hssqlppp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hssqlppp.cabal
75 lines (69 loc) · 3.24 KB
/
hssqlppp.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
Name: hssqlppp
Version: 0.4.0
Synopsis: SQL parser and type checker
License: BSD3
License-file: LICENSE
Author: Jake Wheat
Maintainer: [email protected]
Build-Type: Simple
Cabal-Version: >=1.6
copyright: Copyright 2009-2011 Jake Wheat
stability: pre-alpha
homepage: http://jakewheat.github.com/hssqlppp/
bug-reports: https://github.com/JakeWheat/hssqlppp/issues
category: Database,Language
Description:
SQL parser and type checker, targets PostgreSQL SQL and PL/pgSQL.
.
Documentation, examples on the homepage:
<http://jakewheat.github.com/hssqlppp/>.
.
Changes here: <https://github.com/JakeWheat/hssqlppp/blob/master/CHANGES>
extra-source-files: README
LICENSE
THANKS
--find src/ -iname '*.ag' -o -iname '.sql' -o -iname '*.txt' -o -iname '*.hs' -o -iname '*.lhs'
source-repository head
type: git
location: https://github.com/JakeWheat/hssqlppp.git
Library
Build-Depends: base >= 4 && < 5,
mtl >= 2.0.1.0 && < 2.2,
containers >= 0.3.0.0 && < 0.5,
parsec >= 3.1 && < 3.2,
pretty >= 1.1 && < 1.2,
syb >= 0.1.0.2 && < 0.4,
uniplate >= 1.6 && < 1.7,
transformers >= 0.2.2.0 && < 0.4,
template-haskell
hs-source-dirs: src
Exposed-modules: Database.HsSqlPpp.Ast
Database.HsSqlPpp.Annotation
Database.HsSqlPpp.Catalog
Database.HsSqlPpp.Parser
Database.HsSqlPpp.Pretty
Database.HsSqlPpp.Types
Database.HsSqlPpp.TypeChecker
Database.HsSqlPpp.Quote
-- find src/lib -iname '*hs' | sed -e "s@src/@@" | sed -e "s@/@.@g" |sed -e "s/.lhs//" |sed -e "s/.hs//"
Other-Modules: Database.HsSqlPpp.Utils.Utils
Database.HsSqlPpp.Parsing.ParseErrors
Database.HsSqlPpp.Parsing.Lexer
Database.HsSqlPpp.Parsing.ParserInternal
Database.HsSqlPpp.Internals.Catalog.CatalogInternal
Database.HsSqlPpp.Internals.Catalog.DefaultTemplate1Catalog
Database.HsSqlPpp.Internals.TypeChecking.TypeConversion
Database.HsSqlPpp.Internals.TypeChecking.ErrorUtils
Database.HsSqlPpp.Internals.TypeChecking.LocalBindings
Database.HsSqlPpp.Internals.TypeChecking.Utils
Database.HsSqlPpp.Internals.TypeChecking.IDEnv
Database.HsSqlPpp.Internals.TypeChecking.LocalBindingsInternal
Database.HsSqlPpp.Internals.AstAnnotation
Database.HsSqlPpp.Internals.AnnotationUtils
Database.HsSqlPpp.Internals.AstInternal
Database.HsSqlPpp.Internals.TypeType
extensions: TupleSections
DeriveDataTypeable,
ScopedTypeVariables,
PatternGuards,
FlexibleContexts