cherry-lisp/cherry-lisp.cabal

31 lines
848 B
Plaintext
Raw Normal View History

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
other-modules: ExprType,
2021-01-29 23:11:03 +00:00
Parser,
2021-01-28 01:16:30 +00:00
TokenType,
2021-01-29 23:11:03 +00:00
Lexer,
Evaluator
2021-01-28 01:16:30 +00:00
build-depends: base >= 4.7 && < 5,
containers,
2021-01-28 23:19:19 +00:00
parsec,
haskeline