this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/hannesm/tlstunnel"
3dev-repo: "git+https://github.com/hannesm/tlstunnel.git"
4bug-reports: "https://github.com/hannesm/tlstunnel/issues"
5maintainer: ["Hannes Mehnert <hannes@mehnert.org>"]
6license: "BSD-2-Clause"
7
8build: [
9 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"]
10]
11depends: [
12 "ocaml"
13 "ocamlfind" {build}
14 "ocamlbuild" {build}
15 "topkg" {build}
16 "tls" {>= "0.9.0" & < "1.0.0"}
17 "x509" {>= "0.6.1" & < "0.7.0"}
18 "nocrypto" {>= "0.4.0"}
19 "lwt" {>= "3.0.0" & < "5.0.0"}
20 "sexplib"
21 "cmdliner"
22]
23synopsis: "Tunnel -- a TLS reverse proxy"
24description: """
25Who needs a stunnel if you have a tls tunnel?
26
27`tlstunnel` is picky; it won't accept connections:
28- which do not contain the [secure renegotiation](https://tools.ietf.org/html/rfc5746) extension
29- which speak SSL version 3
30- if the given certificate chain is not valid (or contains an X.509 version 1 certificate, or less than 1024 bits RSA public key"""
31authors: "Hannes Mehnert <hannes@mehnert.org>"
32url {
33 src:
34 "https://github.com/hannesm/tlstunnel/releases/download/0.2.0/tlstunnel-0.2.0.tbz"
35 checksum: [
36 "sha256=c7c0c52197611c69fa551690570caa6def9b1432e74d61f313866ed1246b1703"
37 "md5=3702a4a7fcac59fb83dc9f9c6607f11c"
38 ]
39}
40x-maintenance-intent: [ "(none)" ]