-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoq2c.cabal
33 lines (26 loc) · 1.14 KB
/
coq2c.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
name: coq2c
version: 0.1.0.0
synopsis: compile some monadic Coq code into C code
description: Compile Coq code written in an imperative style
using a monad into the corresponding C code.
Start from the Coq code extracted as JSON by the
internal extraction facility.
license: OtherLicense
license-file: LICENSE
author: Veïs Oudjail <veis.oudjail@gmail.com>
maintainer: Samuel Hym <samuel.hym+bugs@rustyne.lautre.net>
copyright: Université Lille 1, Veïs Oudjail
category: Language
build-type: Simple
extra-source-files: Readme.md
cabal-version: >=1.10
executable coq2c
main-is: coq2c.hs
other-extensions: OverloadedStrings
build-depends: base >=4.7 && <4.9,
aeson >=0.11 && <0.12,
split >=0.2 && <0.3,
optparse-applicative >=0.12 && <0.13,
regex-posix >=0.95 && <0.96,
bytestring >=0.10 && <0.11
default-language: Haskell2010