forked from chathhorn/ReWire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReWire.cabal
124 lines (104 loc) · 4.29 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
-- Initial ReWire.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: ReWire
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.0.0
-- A short (one-line) description of the package.
synopsis: A Haskell-to-VHDL compiler
-- A longer description of the package.
description: An experimental compiler for a subset of Haskell to VHDL.
-- URL for the project homepage or repository.
homepage: https://github.com/mu-chaco/ReWire
-- The license under which the package is released.
license: AllRightsReserved
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Adam Procter, Chris Hathhorn, Ian Graves, and William L. Harrison
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: procteram@missouri.edu
-- A copyright notice.
-- copyright:
category: Language
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a
-- README.
extra-source-files: README.md
data-files: lib/*.hs
test/frontend_tests/*.hs
test/frontend_tests/Mods/*.hs
test/frontend_tests/Mods/C/*.hs
test/compiler_tests/*.hs
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
library
build-depends : ghc >=7.10
, base >=4.6 && < 5
, bytestring >= 0.10
, containers >= 0.5
, deepseq >= 1.3.0
, directory >= 1.2 && < 1.3
, exceptions >= 0.8 && < 0.9
, filepath >= 1.3 && < 1.5
, haskell-src-exts >= 1.17 && < 1.18
, mtl >= 2.2.1
, pretty >= 1.1
, split >= 0.2 && < 0.3
, text >= 0.11
, transformers >= 0.3
, unbound-generics >= 0.3
default-language: Haskell2010
other-extensions: FlexibleInstances, MultiParamTypeClasses, FlexibleContexts, UndecidableInstances
ghc-options: -fprof-auto -rtsopts -Wall -fno-warn-name-shadowing
other-modules: Paths_ReWire
exposed-modules: ReWire.Annotation
ReWire.Core.Syntax
ReWire.Core.ToMiniHDL
ReWire.Error
ReWire.FrontEnd
ReWire.FrontEnd.Annotate
ReWire.FrontEnd.Cache
ReWire.FrontEnd.Desugar
ReWire.FrontEnd.Fixity
ReWire.FrontEnd.KindCheck
ReWire.FrontEnd.LoadPath
ReWire.FrontEnd.PrimBasis
ReWire.FrontEnd.Purify
ReWire.FrontEnd.Rename
ReWire.FrontEnd.Syntax
ReWire.FrontEnd.ToCore
ReWire.FrontEnd.ToMantle
ReWire.FrontEnd.Transform
ReWire.FrontEnd.TypeCheck
ReWire.Main
ReWire.MiniHDL.Syntax
ReWire.Pretty
ReWire.SYB
executable rwc
hs-source-dirs: rwc
main-is: Main.hs
build-depends: ReWire, base >= 4.6 && < 5
default-language: Haskell2010
test-suite rwc-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: TestMain.hs
build-depends: ReWire
, base >= 4.6 && < 5
, Cabal >= 1.10
, directory >= 1.2 && < 1.3
, HUnit >= 1.2.5 && < 1.4
, test-framework >= 0.8 && < 0.9
, test-framework-hunit >= 0.3.0.2 && < 0.4
other-modules: Paths_ReWire
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/mu-chaco/ReWire.git