-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzzzz.cabal
31 lines (28 loc) · 1.02 KB
/
zzzz.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
cabal-version: 2.4
-- Initial package description 'zzzz.cabal' generated by 'cabal init'. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: zzzz
version: 0.1.0.0
synopsis: A lazily-evaluated lisp
-- description:
-- bug-reports:
license: MIT
license-file: LICENSE
author: Zac Garby
maintainer: [email protected]
-- copyright:
category: Language
library
exposed-modules: Main, ZZZZ.Eval, ZZZZ.Parse, ZZZZ.Data, ZZZZ.Builtin, ZZZZ.Compile
-- other-modules:
-- other-extensions:
build-depends: base >=4.11.1.0, containers ^>=0.6.0.1, mtl ^>=2.2.1
hs-source-dirs: src
default-language: Haskell2010
executable zzzz
main-is: Main.hs
other-modules: ZZZZ.Eval, ZZZZ.Parse, ZZZZ.Data, ZZZZ.Builtin, ZZZZ.Compile
-- other-extensions:
build-depends: base >=4.11.1.0, containers ^>=0.6.0.1, mtl ^>=2.2.1
hs-source-dirs: src
default-language: Haskell2010