-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnanohs.cabal
59 lines (48 loc) · 1.84 KB
/
nanohs.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Cabal-Version: 2.4
Name: nanohs
Version: 0.5
Synopsis: nanohs - a self-hosting lambda calculus compiler
Description: A self-hosting lambda calculus compiler.
See the README fore more information.
License: BSD-3-Clause
Author: Balazs Komuves
Copyright: (c) 2021 Balazs Komuves
Maintainer: bkomuves+hackage@gmail.com
Homepage: https://github.com/bkomuves/nanohs
Stability: Experimental
Category: Language
Tested-With: GHC == 8.6.5
Build-Type: Simple
Source-repository head
type: git
location: https://github.com/bkomuves/nanohs
--------------------------------------------------------------------------------
library
Build-Depends: base >= 4 && < 5
Hs-Source-Dirs: .
exposed-modules: Base
Closure
CodeGen
Containers
Core
DataCon
Dependency
Eval
Inliner
Nano
Parser
PrimGHC
PrimOps
ScopeCheck
Syntax
Types
Default-Language: Haskell2010
Default-extensions: Strict, NoImplicitPrelude, FlexibleInstances, FlexibleContexts
Other-extensions: CPP
--------------------------------------------------------------------------------
executable nanohs_bootstrap.exe
Build-Depends: base >= 4 && < 5, nanohs >= 0.5
main-is: main.hs
Default-Language: Haskell2010
Hs-Source-Dirs: .
--------------------------------------------------------------------------------