summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-02-26 12:25:03 +0100
committerPéter Diviánszky <divipp@gmail.com>2016-02-26 12:28:57 +0100
commitc0d38528840c15998c02ef8e04a0a7b7be34ad5d (patch)
treea640d9362b8928e7a8caef710aba12341b147152
parent4d892df7d149e9c8891fde9a0229f7b3aca547db (diff)
add cabal file
-rw-r--r--ddl/ddl.cabal33
1 files changed, 33 insertions, 0 deletions
diff --git a/ddl/ddl.cabal b/ddl/ddl.cabal
new file mode 100644
index 0000000..2e4a210
--- /dev/null
+++ b/ddl/ddl.cabal
@@ -0,0 +1,33 @@
1-- Initial ddl.cabal generated by cabal init. For further documentation,
2-- see http://haskell.org/cabal/users-guide/
3
4name: ddl
5version: 0.1.0.0
6synopsis: data definition language with ADT support
7-- description:
8license: BSD3
9license-file: LICENSE
10author: Csaba Hruska
11maintainer: csaba.hruska@gmail.com
12-- copyright:
13category: Data
14build-type: Simple
15-- extra-source-files:
16cabal-version: >=1.10
17
18executable ddl-generate
19 main-is: Generate.hs
20 other-modules: Language, Definitions
21 other-extensions: RankNTypes, OverloadedStrings, DeriveGeneric, LambdaCase, FlexibleInstances
22 build-depends:
23 base >=4.8 && <4.9
24 , aeson >=0.9 && <0.10
25 , mtl >=2.2 && <2.3
26 , containers >=0.5 && <0.6
27 , text >=1.2 && <1.3
28 , unordered-containers >=0.2 && <0.3
29 , directory >=1.2 && <1.3
30 , time >=1.5 && <1.6
31 , ede
32 -- hs-source-dirs:
33 default-language: Haskell2010