The opam repository for my Advent of Agentic Humps 2025

Add zulip package

OCaml bindings for the Zulip REST API with Eio-based bot framework.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+47
+47
packages/zulip/zulip.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OCaml bindings for the Zulip REST API with bot framework" 3 + description: """ 4 + High-quality OCaml bindings to the Zulip REST API using Eio for async 5 + operations. Includes a fiber-based bot framework (zulip.bot) with XDG 6 + configuration support.""" 7 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 8 + authors: ["Anil Madhavapeddy <anil@recoil.org>"] 9 + license: "ISC" 10 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-zulip" 11 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-zulip/issues" 12 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-zulip.git" 13 + depends: [ 14 + "dune" {>= "3.0"} 15 + "ocaml" {>= "5.1.0"} 16 + "eio" 17 + "requests" 18 + "uri" 19 + "base64" 20 + "init" 21 + "jsont" 22 + "logs" 23 + "fmt" 24 + "xdge" 25 + "eio_main" 26 + "cmdliner" 27 + "odoc" {with-doc} 28 + "alcotest" {with-test} 29 + "mirage-crypto-rng" {with-test} 30 + ] 31 + build: [ 32 + ["dune" "subst"] {dev} 33 + [ 34 + "dune" 35 + "build" 36 + "-p" 37 + name 38 + "-j" 39 + jobs 40 + "@install" 41 + "@runtest" {with-test} 42 + "@doc" {with-doc} 43 + ] 44 + ] 45 + url { 46 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-zulip.git#main" 47 + }