-
Notifications
You must be signed in to change notification settings - Fork 5
/
rewire.cabal
203 lines (195 loc) · 5.2 KB
/
rewire.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
name: rewire
version: 2.5.0
synopsis: A Haskell-to-Verilog/VHDL compiler
description: An experimental compiler for a subset of Haskell to Verilog and VHDL.
category: Language
homepage: https://github.com/mu-chaco/ReWire
bug-reports: https://github.com/twosixlabs/ReWire.git/issues
author: Adam Procter,
Chris Hathhorn <hathhorn@gmail.com>,
Ian Graves,
William L. Harrison
maintainer: Chris Hathhorn <hathhorn@gmail.com>
license: NONE
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
data-files:
tests/integration/InlinedMiniISA.hs
tests/integration/MiniISA.hs
tests/integration/OD19Filter.hs
tests/integration/RW_REPL_OD19Filter.hs
tests/integration/SecMemCon.hs
tests/integration/Sha256_1.hs
tests/integration/Sha256_2.hs
tests/integration/OD19/ProgramCounter.hs
tests/regression/Mods/Infix.hs
tests/regression/Mods/X.hs
tests/regression/Mods/Y.hs
tests/regression/Mods/C/X.hs
tests/regression/case1.hs
tests/regression/case2.hs
tests/regression/dissex.hs
tests/regression/exp2.hs
tests/regression/extern.hs
tests/regression/fibo1.hs
tests/regression/fibo2.hs
tests/regression/fibo3.hs
tests/regression/fully.hs
tests/regression/funcase.hs
tests/regression/guards.hs
tests/regression/HigherOrderBug.hs
tests/regression/Infix.hs
tests/regression/ModsMain.hs
tests/regression/onestate.hs
tests/regression/pats.hs
tests/regression/PreludeTest.hs
tests/regression/putBug.hs
tests/regression/records.hs
tests/regression/sigNothing.hs
tests/regression/state0.hs
tests/regression/synonym.hs
tests/regression/test2.hs
tests/regression/test3.hs
tests/regression/toag.hs
tests/regression/toags.hs
tests/regression/uniquification.hs
tests/regression/UpCounter1.hs
tests/regression/UpCounter2.hs
tests/regression/weird1.hs
rewire-user/src/ReWire.hs
rewire-user/src/RWC/Primitives.hs
rewire-user/src/ReWire/Bits.hs
rewire-user/src/ReWire/BitWord.hs
rewire-user/src/ReWire/Monad.hs
rewire-user/src/ReWire/Prelude.hs
source-repository head
type: git
location: https://github.com/twosixlabs/ReWire.git
library
exposed-modules:
RWC
other-modules:
Paths_rewire
autogen-modules:
Paths_rewire
hs-source-dirs:
src
default-extensions:
LambdaCase
TupleSections
ViewPatterns
ghc-options: -Wall -fno-warn-name-shadowing -funbox-strict-fields -O2 -optc-O3 -j8 +RTS -A64m -RTS
build-depends:
base ==4.16.*
, directory ==1.3.*
, filepath ==1.4.*
, ghc ==9.2.*
, lens ==5.1.*
, rewire-core
, rewire-user ==0.1.*
, text ==1.2.*
default-language: Haskell2010
executable firrtl
main-is: Main.hs
other-modules:
Paths_rewire
autogen-modules:
Paths_rewire
hs-source-dirs:
apps/firrtl
default-extensions:
LambdaCase
TupleSections
ViewPatterns
ghc-options: -Wall -fno-warn-name-shadowing -funbox-strict-fields -O2 -optc-O3 -j8 +RTS -A64m -RTS
build-depends:
base ==4.16.*
, directory ==1.3.*
, filepath ==1.4.*
, ghc ==9.2.*
, lens ==5.1.*
, rewire-core
, rewire-user ==0.1.*
, text ==1.2.*
default-language: Haskell2010
executable rwc
main-is: Main.hs
other-modules:
Paths_rewire
autogen-modules:
Paths_rewire
hs-source-dirs:
apps/rwc
default-extensions:
LambdaCase
TupleSections
ViewPatterns
ghc-options: -Wall -fno-warn-name-shadowing -funbox-strict-fields -O2 -optc-O3 -j8 +RTS -A64m -RTS
build-depends:
base ==4.16.*
, directory ==1.3.*
, filepath ==1.4.*
, ghc ==9.2.*
, lens ==5.1.*
, rewire
, rewire-user ==0.1.*
, text ==1.2.*
default-language: Haskell2010
executable rwcx
main-is: Main.hs
other-modules:
Paths_rewire
autogen-modules:
Paths_rewire
hs-source-dirs:
apps/rwcx
default-extensions:
LambdaCase
TupleSections
ViewPatterns
ghc-options: -Wall -fno-warn-name-shadowing -funbox-strict-fields -O2 -optc-O3 -j8 +RTS -A64m -RTS
build-depends:
base ==4.16.*
, directory ==1.3.*
, filepath ==1.4.*
, ghc ==9.2.*
, ghc-paths >=0.1.0.12 && <0.2
, lens ==5.1.*
, rewire-core
, rewire-user ==0.1.*
, text ==1.2.*
default-language: Haskell2010
test-suite rwc-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_rewire
autogen-modules:
Paths_rewire
hs-source-dirs:
apps/rwc-test
default-extensions:
LambdaCase
TupleSections
ViewPatterns
ghc-options: -Wall -fno-warn-name-shadowing -funbox-strict-fields -O2 -optc-O3 -j8 +RTS -A64m -RTS
build-depends:
HUnit ==1.6.*
, base ==4.16.*
, directory ==1.3.*
, filepath ==1.4.*
, ghc ==9.2.*
, lens ==5.1.*
, process ==1.6.*
, rewire
, rewire-user ==0.1.*
, test-framework ==0.8.*
, test-framework-hunit >=0.3.0.2 && <0.4
, text ==1.2.*
default-language: Haskell2010