-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathiyql.cabal
65 lines (61 loc) · 2.21 KB
/
iyql.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
name: iyql
version: 0.0.8
category: Network
license: GPL-3
license-file: LICENSE
author: Diego Souza <dsouza+iyql at bitforest.org>
maintainer: Diego Souza <dsouza+iyql at bitforest.org>
stability: experimental
build-type: Simple
cabal-version: >= 1.6
synopsis: CLI (command line interface) to YQL
description: Similar to popular database frontend interfaces like sqlite3, this
project provides a full featured CLI for YQL.
It extends YQL introducing the concept of of location functions.
These have the same concept of YQL functions except they are
intercepted by the program itself and executed locally. For
instance, changing the format to json or turning diagnostics on
are examples of such functions.
executable iyql
main-is: iyql.hs
hs-source-dirs: src/main/haskell
build-depends: haskell98
, base<5
, hoauth>=0.3.1
, directory>=1.0.1.0
, filepath>=1.1.0.3
, containers>=0.3.0.0
, utf8-string>=0.3.6
, bytestring>=0.9.1.5
, time>=1.1.4
, mtl>=1.1.0.2
, xml>=1.3.7
, old-locale>=1.0.0.2
, binary>=0.5.0.2
, parsec>=2.1.0.1
, haskeline>=0.6.2.2
other-modules: Yql.UI.Cli
, Yql.UI.CLI.Command
, Yql.UI.CLI.Options
, Yql.UI.CLI.Commands.Parser
, Yql.UI.CLI.Commands.WhoAmI
, Yql.UI.CLI.Commands.Logout
, Yql.UI.CLI.Commands.ManLf
, Yql.UI.CLI.Commands.Login
, Yql.UI.CLI.Commands.SetEnv
, Yql.UI.CLI.Input
, Yql.Data.Xml
, Yql.Data.Trie
, Yql.Data.Version
, Yql.Data.Cfg
, Yql.Core.Backend
, Yql.Core.Session
, Yql.Core.Lexer
, Yql.Core.Parser
, Yql.Core.LocalFunctions.Request
, Yql.Core.LocalFunctions.Tables
, Yql.Core.Types
, Yql.Core.LocalFunction
source-repository head
type: git
location: [email protected]:dsouza/iyql.git