this repo has no description
1opam-version: "2.0" 2maintainer: "Zach Shipko <zachshipko@gmail.com>" 3authors: "Zach Shipko" 4homepage: "https://github.com/zshipko/ocaml-hiredis" 5bug-reports: "https://github.com/zshipko/ocaml-hiredis/issues" 6license: "ISC" 7doc: "https://github.com/zshipko/ocaml-hiredis" 8dev-repo: "git+https://github.com/zshipko/ocaml-hiredis.git" 9build: [ 10 ["ocaml" "./pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 11 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] 12 {with-test} 13] 14depends: [ 15 "ocaml" {>= "4.03.0"} 16 "ocamlfind" {build} 17 "ocamlbuild" {build} 18 "topkg" {build} 19 "conduit-lwt-unix" {>= "1.0.0" & <"2.0.0"} 20 "lwt" {with-test & < "5.0.0"} 21] 22synopsis: "Redis tools based on the Hiredis C library" 23description: 24 "Hiredis provides a unified interface for creating Redis clients, pools of clients and servers." 25url { 26 src: "https://github.com/zshipko/ocaml-hiredis/archive/v0.4.tar.gz" 27 checksum: [ 28 "sha256=8e855fb23935b99b2e523fcb5933734e4e7e1734980eccc0b105df4c381b953e" 29 "md5=ddc7d3fe26d46ffab7a767b7bbd673f3" 30 ] 31}