-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfn++.opam
37 lines (37 loc) · 919 Bytes
/
cfn++.opam
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
opam-version: "2.0"
name: "cfn++"
version: "0.1"
synopsis: "A native-code compiler for AWS::Serverless"
description: """
CFN++ is a cloud-native language targeted at AWS::Serverless. It provides an
object-oriented syntax for CloudFormation and native-code compiler for AWS
Lambda, combined into one unified language.
"""
maintainer: "Jonathan Bryant <[email protected]>"
authors: "Jonathan Bryant <[email protected]>"
license: "MIT"
homepage: "http://github.com/watersofoblivion/cfn"
bug-reports: "http://github.com/watersofoblivion/cfn/issues"
dev-repo: "git+http://github.com/watersofoblivion/cfn"
build: [
["dune" "subst"]
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs]
]
depends: [
"dune"
"menhir"
"odoc"
"atdgen"
"yojson"
"cmdliner"
"ounit2"
"llvm"
"zarith"
"simple-diff"
"ANSITerminal"
"bisect_ppx"
"ctypes-foreign"
"uri"
"sedlex"
]