-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdoldrums.cabal
More file actions
107 lines (100 loc) · 2.35 KB
/
Copy pathdoldrums.cabal
File metadata and controls
107 lines (100 loc) · 2.35 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
cabal-version: 3.0
name: doldrums
version: 0.1.0.0
synopsis: A small, purely functional programming language.
description: Please see the README on GitHub at <https://github.com/mitchellvitez/doldrums#readme>
homepage: https://github.com/mitchellvitez/doldrums#readme
bug-reports: https://github.com/mitchellvitez/doldrums/issues
author: Mitchell Vitez
maintainer: mitchell@vitez.me
copyright: 2020 Mitchell Vitez
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/mitchellvitez/doldrums
common common
ghc-options:
-Wall -Wextra -Werror
-Wincomplete-record-updates -Wincomplete-uni-patterns
-Wpartial-fields -Wredundant-constraints
-Wunused-packages -Wambiguous-fields
-Wunused-type-patterns -Wno-unused-do-bind
default-extensions:
OverloadedStrings
LambdaCase
GADTs
TypeOperators
KindSignatures
StandaloneDeriving
BangPatterns
BlockArguments
build-depends:
base >=4.21 && <5
, text >=1.2
library
import: common
exposed-modules:
Derive
Desugar
FixAst
Graphviz
Interpret
LLVM
Language
Lib
Parse
STG
Typecheck
other-modules:
Paths_doldrums
hs-source-dirs:
src
build-depends:
containers >=0.6
, directory >=1.3
, megaparsec >=8.0
, mtl >=2.2
, parser-combinators >=1.2
, process >=1.6
, temporary >=1.3
default-language: GHC2024
executable doldrums
import: common
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
doldrums
, optparse-applicative >=0.19 && <1
default-language: GHC2024
test-suite doldrums-test
import: common
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
other-modules:
Parser
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
directory >=1.3
, doldrums
, filepath >=1.4
, hspec >=2.11
, megaparsec >=8.0
, raw-strings-qq >=1.1
, process >=1.6
default-language: GHC2024
executable doldrums-repl
import: common
main-is: Repl.hs
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
doldrums
, mtl >= 2.2
default-language: GHC2024