forked from vbmithr/ocaml-thrift-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thrift.opam
28 lines (28 loc) · 1.14 KB
/
thrift.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
opam-version: "2.0"
maintainer: "Vincent Bernardoff <[email protected]>"
authors: ["The Apache Thrift Maintainers"]
build: [ "dune" "build" "-p" name "-j" jobs ]
homepage: "https://github.com/vbmithr/ocaml-thrift-lib"
bug-reports: "https://github.com/vbmithr/ocaml-thrift-lib/issues"
doc: "https://vbmithr.github.io/ocaml-thrift-lib/doc"
depends: [
"alcotest" { with-test & >= "0.8" }
"ocaml" { >= "4.03.0" }
"dune" { >= "1.1" }
"ppx_deriving" { >= "4.5" }
"ocplib-endian" { >= "1.1" }
]
depexts: [
["thrift"] {os-family = "arch"}
["thrift-compiler"] {os-family = "debian"}
["devel/thrift"] {os-family = "bsd"}
["thrift"] {os = "macos" & os-distribution = "homebrew"}
]
dev-repo: "git+https://github.com/vbmithr/ocaml-thrift-lib"
synopsis: "OCaml bindings for the Apache Thrift RPC system"
description: """
The Apache Thrift software framework, for scalable cross-language
services development, combines a software stack with a code generation
engine to build services that work efficiently and seamlessly between
C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa,
JavaScript, Node.js, Smalltalk, OCaml and Delphi and other languages."""