this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: "David Scott" 4license: "ISC" 5homepage: "https://github.com/mirage/ocaml-launchd" 6doc: "https://mirage.github.io/ocaml-launchd/" 7bug-reports: "https://github.com/mirage/ocaml-launchd/issues" 8synopsis: "Bindings for the launchd socket activation API" 9description: """ 10Launchd on macOS takes care of binding and listening on sockets for you 11and can launch your program on demand. The API bindings are needed to 12receive the listening sockets from launchd. 13""" 14 15depends: [ 16 "ocaml" {>= "4.03"} 17 "dune" 18 "lwt" {>= "2.4.3"} 19 "cstruct" {>= "1.0.0"} 20 "cstruct-lwt" 21] 22available: os = "macos" 23build: [ 24 ["dune" "subst"] {dev} 25 ["dune" "build" "-p" name "-j" jobs] 26] 27dev-repo: "git+https://github.com/mirage/ocaml-launchd.git" 28url { 29 src: 30 "https://github.com/mirage/ocaml-launchd/releases/download/v1.3/launchd-v1.3.tbz" 31 checksum: [ 32 "sha256=4330d77dabce28c5e402484419e5af08e8768b7cf5e26737d5cc067af210429b" 33 "md5=646fc8ad43bdf071838813eb57ebaeb5" 34 ] 35}