-
Notifications
You must be signed in to change notification settings - Fork 13
/
ca-certs.opam
53 lines (53 loc) · 1.3 KB
/
ca-certs.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Detect root CA certificates from the operating system"
description: """
TLS requires a set of root anchors (Certificate Authorities) to
authenticate servers. This library exposes this list so that it can be
registered with ocaml-tls.
"""
maintainer: ["Etienne Millon <[email protected]>"]
authors: [
"Etienne Millon <[email protected]>, Hannes Mehnert <[email protected]>"
]
license: "ISC"
homepage: "https://github.com/mirage/ca-certs"
doc: "https://mirage.github.io/ca-certs/doc"
bug-reports: "https://github.com/mirage/ca-certs/issues"
depends: [
"dune" {>= "2.0"}
"bos"
"fpath"
"ptime"
"logs"
"digestif" {>= "1.2.0"}
"mirage-crypto" {>= "1.0.0"}
"x509" {>= "1.0.0"}
"ocaml" {>= "4.13.0"}
"ohex" {>= "0.2.0"}
"alcotest" {with-test}
"fmt" {with-test & >= "0.8.7"}
]
conflicts: [
"result" {< "1.5"}
]
dev-repo: "git+https://github.com/mirage/ca-certs.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test & os != "macos"} # the opam sandbox on macos leads to test failures (ocaml/opam#4389)
"@doc" {with-doc}
]
]
tags: ["org:mirage"]
depexts: [
["ca_root_nss"] {os = "freebsd"}
]
x-maintenance-intent: [ "(latest)" ]