forked from mirage/ocaml-osx-dnssd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdnssd.opam
36 lines (33 loc) · 963 Bytes
/
dnssd.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
opam-version: "2.0"
maintainer: "dave@recoil.org"
authors: ["David Scott" "Thomas Gazagnaire"]
license: "ISC"
homepage: "https://github.com/mirage/ocaml-osx-dnssd"
dev-repo: "git+https://github.com/mirage/ocaml-osx-dnssd.git"
bug-reports: "https://github.com/mirage/ocaml-osx-dnssd/issues"
doc: "https://mirage.github.io/ocaml-osx-dnssd/"
tags: [
"org:mirage"
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.03.0"}
"dns"
"lwt"
"logs"
"fmt"
"cstruct" {>= "2.3.0"}
"dune" {build}
"alcotest" {with-test}
]
synopsis: "DNS resolution for macOS"
description: """
Bindings to the
[DNSServiceRef](https://developer.apple.com/documentation/dnssd/dnsserviceref?language=objc)
APIs on macOS which use the system's DNS resolver. This allows you to perform
DNS queries using exactly the same logic as macOS, including respecting VPN
policy."""