this repo has no description
1opam-version: "2.0" 2synopsis: "Library to make OCaml program act as a Windows service" 3maintainer: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] 4authors: ["Romain Beauxis <toots@rastageeks.org>"] 5license: "GPL-2.0-only" 6homepage: "https://github.com/savonet/ocaml-winsvc" 7bug-reports: "https://github.com/savonet/ocaml-winsvc/issues" 8depends: [ 9 "ocaml" {>= "4.06"} 10 "dune" {>= "2.8"} 11 "odoc" {with-doc} 12] 13build: [ 14 ["dune" "subst"] {dev} 15 [ 16 "dune" 17 "build" 18 "-p" 19 name 20 "-j" 21 jobs 22 "@install" 23 "@runtest" {with-test} 24 "@doc" {with-doc} 25 ] 26] 27dev-repo: "git+https://github.com/savonet/ocaml-winsvc.git" 28available: [ os = "win32" ] 29url { 30 src: "https://github.com/savonet/ocaml-winsvc/archive/v1.0.1.tar.gz" 31 checksum: [ 32 "md5=e554b052745795a5721b40b820737226" 33 "sha512=d63a033d590d910239a377ef128847328b377ff2974e5e20e0daa5460d9fa6d3102c3205159b9c5ddce049bd43e96adb7ce4fdab24141832119196f006f68fb3" 34 ] 35}