this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3authors: [ 4 "Anil Madhavapeddy" 5 "Tim Deegan" 6 "Richard Mortier" 7 "Haris Rotsos" 8 "David Sheets" 9 "Thomas Gazagnaire" 10 "Luke Dunstan" 11] 12license: "ISC" 13homepage: "https://github.com/mirage/ocaml-dns" 14bug-reports: "https://github.com/mirage/ocaml-dns/issues" 15flags: deprecated 16synopsis: "DNS implementation for the MirageOS unikernel framework" 17description: """ 18This is an implementation of a DNS server and client resolver 19for the [MirageOS unikernel framework](https://mirage.io). 20""" 21depends: [ 22 "ocaml" {>= "4.03.0"} 23 "dune" 24 "dns-lwt" {>= "1.1.0" & < "2.0.0"} 25 "duration" 26 "mirage-stack-lwt" 27 "mirage-kv-lwt" {< "2.0.0"} 28 "mirage-time-lwt" 29 "mirage-profile" {>= "0.8.0"} 30] 31build: [ 32 ["dune" "subst"] {dev} 33 ["dune" "build" "-p" name "-j" jobs] 34] 35dev-repo: "git+https://github.com/mirage/ocaml-dns.git" 36url { 37 src: 38 "https://github.com/mirage/ocaml-dns/releases/download/v1.1.0/dns-v1.1.0.tbz" 39 checksum: [ 40 "sha256=725b4c1647ce20b137e7ffab1fae138f15e88cac4b49cd2b7da027e433da4b14" 41 "md5=62230d2f85de4646d029cde7d1c3a55d" 42 ] 43}