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" {< "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.1/dns-v1.1.1.tbz" 39 checksum: [ 40 "sha256=75493f52caacaf6093a29781fdbe46217e34d21ca0a5930f0d8ac109babad021" 41 "md5=42a49a41d3b53567e074b864926d4411" 42 ] 43}