2021-01-28 01:16:30 +00:00
|
|
|
name: cherry-lisp
|
|
|
|
version: 0.1.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
--homepage: https://github.com/githubuser/lisp#readme
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Suguivy
|
|
|
|
maintainer: suguivy@riseup.com
|
|
|
|
copyright: 2021 Suguivy
|
|
|
|
category: Language
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
|
|
|
extra-source-files: README.md
|
|
|
|
|
|
|
|
executable cherry
|
|
|
|
hs-source-dirs: src
|
|
|
|
main-is: Main.hs
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
2021-02-03 19:52:01 +00:00
|
|
|
other-modules: Parser,
|
2021-01-30 21:38:44 +00:00
|
|
|
Token,
|
2021-01-29 23:11:03 +00:00
|
|
|
Lexer,
|
2021-01-30 17:09:05 +00:00
|
|
|
Evaluator,
|
2021-02-03 19:52:01 +00:00
|
|
|
Enviroment,
|
|
|
|
Types.Language
|
2021-01-28 01:16:30 +00:00
|
|
|
|
|
|
|
build-depends: base >= 4.7 && < 5,
|
|
|
|
containers,
|
2021-01-28 23:19:19 +00:00
|
|
|
parsec,
|
2021-02-02 23:44:23 +00:00
|
|
|
haskeline,
|
|
|
|
mtl
|