-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhummus.cabal
42 lines (37 loc) · 942 Bytes
/
hummus.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
32
33
34
35
36
37
38
39
40
41
42
name: hummus
version: 0.1
synopsis: A dialect of the Kernel programming language.
-- description:
license: BSD3
license-file: LICENSE
author: Alex Suraci
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
cabal-version: >=1.8
data-files: kernel/*.hms
executable hummus
hs-source-dirs: src
main-is: Main.hs
ghc-prof-options: -prof -auto-all -caf-all
ghc-options: -Wall -threaded -fno-warn-unused-do-bind -rtsopts
other-modules:
Control.Monad.CC,
Control.Monad.CC.Cursor,
Control.Monad.CC.Dynvar,
Control.Monad.CC.Prompt,
Control.Monad.CC.Seq,
Hummus.Types,
Hummus.Parser,
Hummus.Runtime,
Hummus.Prelude
build-depends:
attoparsec,
base,
bytestring,
filepath,
haskeline,
hashtables,
mtl,
time