-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopilot-bluespec.cabal
100 lines (82 loc) · 3 KB
/
copilot-bluespec.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
cabal-version : >= 1.10
name : copilot-bluespec
version : 4.2
synopsis : A compiler for Copilot targeting FPGAs.
description :
This package is a back-end from Copilot to FPGAs in Bluespec.
.
Copilot is a stream (i.e., infinite lists) domain-specific language (DSL) in
Haskell. Copilot contains an interpreter, multiple back-end compilers, and
other verification tools.
.
A tutorial, examples, and other information are available at
<https://copilot-language.github.io>.
license : BSD3
license-file : LICENSE
maintainer : Ryan Scott <[email protected]>
homepage : https://copilot-language.github.io
bug-reports : https://github.com/Copilot-Language/copilot-bluespec/issues
stability : Experimental
category : Language, Embedded
build-type : Simple
extra-source-files : README.md
, CHANGELOG
author : Frank Dedden
, Alwyn Goodloe
, Ivan Perez
, Ryan Scott
x-curation: uncurated
source-repository head
type: git
location: https://github.com/Copilot-Language/copilot-bluespec.git
library
default-language : Haskell2010
hs-source-dirs : src, shared
ghc-options : -Wall
build-depends : base >= 4.9 && < 5
, directory >= 1.3 && < 1.4
, filepath >= 1.4 && < 1.5
, pretty >= 1.1.2 && < 1.2
, copilot-core >= 4.2 && < 4.3
, language-bluespec >= 0.1 && < 0.2
exposed-modules : Copilot.Compile.Bluespec
other-modules : Copilot.Compile.Bluespec.CodeGen
, Copilot.Compile.Bluespec.Compile
, Copilot.Compile.Bluespec.Error
, Copilot.Compile.Bluespec.Expr
, Copilot.Compile.Bluespec.External
, Copilot.Compile.Bluespec.FloatingPoint
, Copilot.Compile.Bluespec.Name
, Copilot.Compile.Bluespec.Representation
, Copilot.Compile.Bluespec.Settings
, Copilot.Compile.Bluespec.Type
test-suite tests
type:
exitcode-stdio-1.0
main-is:
Main.hs
other-modules:
Test.Copilot.Compile.Bluespec
Copilot.Compile.Bluespec.External
build-depends:
base
, directory
, HUnit
, QuickCheck
, extra
, ieee754
, pretty
, process
, random
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, unix
, copilot-core
, copilot-bluespec
hs-source-dirs:
tests, shared
default-language:
Haskell2010
ghc-options:
-Wall