aboutsummaryrefslogtreecommitdiff
path: root/micro2.cabal
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2022-08-12 22:53:06 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-08-12 22:53:06 +0100
commit279f04cb63e45ceb9a9df82540d5362565b8b37b (patch)
treebf71e8d7829e6ccf29320dacaf7c4742423683c5 /micro2.cabal
downloadmicro-lang-hs-279f04cb63e45ceb9a9df82540d5362565b8b37b.tar.gz
micro-lang-hs-279f04cb63e45ceb9a9df82540d5362565b8b37b.zip
Initial import
Diffstat (limited to 'micro2.cabal')
-rw-r--r--micro2.cabal32
1 files changed, 32 insertions, 0 deletions
diff --git a/micro2.cabal b/micro2.cabal
new file mode 100644
index 0000000..f4c506a
--- /dev/null
+++ b/micro2.cabal
@@ -0,0 +1,32 @@
+cabal-version: 2.4
+name: micro2
+version: 0.1.0.0
+
+synopsis: Micro2 toy programming language
+homepage: https://git.usebox.net/micro2-lang/about/
+
+license: GPL-3.0-or-later
+author: Juan J. Martinez
+maintainer: jjm@usebox.net
+
+copyright: (c) 2022 Juan J. Martinez
+extra-source-files:
+ CHANGELOG.md
+ , README.md
+ , COPYING
+
+executable micro2
+ main-is: Main.hs
+ other-modules:
+ Ast
+ Lexer
+ Parser
+ Compiler
+
+ build-depends:
+ base ^>= 4.16.1.0
+ , parsec ^>= 3.1.15.1
+ , mtl ^>= 2.2.2
+ , containers ^>= 0.6.5.1
+ hs-source-dirs: src
+ default-language: Haskell2010