This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
copilot-c99.cabal
75 lines (68 loc) · 3.2 KB
/
copilot-c99.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
cabal-version : >= 1.10
name : copilot-c99
version : 3.2.1
synopsis : A compiler for Copilot targeting C99.
description :
This package is a back-end from Copilot to C.
.
Copilot is a stream (i.e., infinite lists) domain-specific language (DSL) in
Haskell that compiles into embedded C. 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 : Frank Dedden <[email protected]>
homepage : https://copilot-language.github.io
bug-reports : https://github.com/Copilot-Language/copilot-c99/issues
stability : Experimental
category : Language, Embedded
build-type : Simple
extra-source-files : README.md
, CHANGELOG
author : Frank Dedden
, Alwyn Goodloe
source-repository head
type: git
location: git://github.com/Copilot-Language/copilot-c99.git
library
default-language : Haskell2010
hs-source-dirs : src
ghc-options : -Wall -fwarn-tabs
build-depends : base >= 4.9 && < 5
, containers >= 0.4 && < 0.7
, directory >= 1.3 && < 1.4
, filepath >= 1.4 && < 1.5
, mtl >= 2.2 && < 2.3
, pretty >= 1.1 && < 1.2
, copilot-core >= 3.2.1 && < 3.3
, language-c99 >= 0.1.1 && < 0.2
, language-c99-util >= 0.1.1 && < 0.2
, language-c99-simple >= 0.1.1 && < 0.2
exposed-modules : Copilot.Compile.C99
, Copilot.Compile.C99.Translate
, Copilot.Compile.C99.Util
, Copilot.Compile.C99.CodeGen
, Copilot.Compile.C99.External
, Copilot.Compile.C99.Compile
test-suite test
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: testing
main-is: Main.hs
other-modules: Copilot.Compile.C99.Driver
, Copilot.Compile.C99.Test
, Copilot.Compile.C99.Property.MatchesInterpreter
, Copilot.Compile.C99.Property.SequencePoint
build-depends: base
, copilot-core
, copilot-c99 >= 3.2.1 && < 3.3
, copilot-language >= 3.2.1 && < 3.3
, language-c99 >= 0.1.2 && < 0.2
, language-c99-simple
, pretty >= 1.1.3 && < 1.2
, process >= 1.6.5 && < 1.7
, QuickCheck >= 2.14 && < 2.15
, csv >= 0.1.2 && < 0.2
, hspec >= 2.7.1 && < 2.8