-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlambda.cabal
More file actions
89 lines (84 loc) · 2.03 KB
/
Copy pathlambda.cabal
File metadata and controls
89 lines (84 loc) · 2.03 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 5334e05e0329580f720d6b7cfe43b7f70e1e2338c006ec4bac87dd31709aaf57
name: lambda
version: 0.2.0.0
description: Please see the README on GitHub at <https://github.com/sudo-rushil/lambda#readme>
homepage: https://github.com/sudo-rushil/lambda#readme
bug-reports: https://github.com/sudo-rushil/lambda/issues
author: Rushil Mallarapu
maintainer: rushil.mallarapu@gmail.com
copyright: Rushil Mallarapu
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
data-files:
stdlib.lc
source-repository head
type: git
location: https://github.com/sudo-rushil/lambda
library
exposed-modules:
Combinator
Combinator.Convert
Combinator.Reduce
Combinator.Syntax
Combinator.Transform
Control
Control.Args
Control.Cmd
Control.Eval
Control.Module
Control.Repl
Control.Run
Control.State
Lambda
Lambda.Lex
Lambda.Lexer
Lambda.Parse
Lambda.Parser
Lambda.Reduce
Lambda.Syntax
other-modules:
Paths_lambda
hs-source-dirs:
src
build-depends:
array >=0.5
, base >=4.7 && <5
, bytestring >=0.10
, containers >=0.4
, directory >=1.3
, filepath >=1.4
, haskeline >=0.7.1
, mtl >=2.2
, optparse-applicative >=0.15
default-language: Haskell2010
executable lambda
main-is: Main.hs
other-modules:
Paths_lambda
hs-source-dirs:
app
default-extensions: OverloadedStrings
ghc-options: -threaded -O3 -rtsopts -with-rtsopts=-N -optP-Wno-nonportable-include-path
build-tools:
alex
, happy
build-depends:
array >=0.5
, base >=4.7 && <5
, bytestring >=0.10
, containers >=0.4
, directory >=1.3
, filepath >=1.4
, haskeline >=0.7.1
, lambda
, mtl >=2.2
, optparse-applicative >=0.15
default-language: Haskell2010