this repo has no description
1opam-version: "2.0" 2 3synopsis: "Interacting with cron from OCaml" 4description: """ 5With this library, an ocaml program can interact with cron: 6parse/print crontab and update installed crontabs. 7""" 8 9maintainer: "Yann Régis-Gianas <yrg@irif.fr>" 10authors: [ 11 "Yann Régis-Gianas <yann.regis-gianas@irif.fr>" 12] 13license: "MIT" 14 15homepage: "https://github.com/yurug/ocaml-crontab" 16bug-reports: "https://github.com/yurug/ocaml-crontab/issues" 17dev-repo: "git+https://github.com/yurug/ocaml-crontab.git" 18 19depends: [ 20 "dune" {>= "1.4.0"} 21 "ocaml" 22 "odoc" {with-doc} 23] 24 25build: ["dune" "build" "-p" name "-j" jobs] 26url { 27 src: "https://github.com/yurug/ocaml-crontab/archive/0.1.tar.gz" 28 checksum: [ 29 "md5=0bea4f8de63112ad92706e985e431ed0" 30 "sha512=a7a4a4f70625bd8222bd2f66dee524e54634d3a5915cab140c114228d02b0e7c598bd7675c584a05c240fbf92070c2d198fb4a1b92631eb83c333fd3e58c080b" 31 ] 32}