this repo has no description
1opam-version: "2.0" 2maintainer: "Jesse Haber-Kucharsky <jesse@haberkucharsky.com>" 3authors: "Jesse Haber-Kucharsky <jesse@haberkucharsky.com>" 4homepage: "https://gitlab.com/jhaberku/Zlist" 5bug-reports: "https://gitlab.com/jhaberku/Zlist/issues" 6license: "Apache-2.0" 7dev-repo: "git+https://gitlab.com/jhaberku/Zlist.git" 8build: [ 9 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 10 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] 11 {with-test} 12 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 13] 14depends: [ 15 "ocaml" 16 "alcotest" {with-test & >= "0.7.2"} 17 "ocamlbuild" {build & >= "0.9.2"} 18 "ocamlfind" {build & >= "1.6.2"} 19 "topkg" {build & >= "0.7.8"} 20] 21synopsis: "Lazy lists for OCaml" 22description: 23 "`zlist` consists of the definition of a lazy list type and a number of useful functions for manipulating and constructing lazy lists." 24url { 25 src: 26 "https://github.com/ocaml/opam-source-archives/raw/main/zlist-0.1.2.tbz" 27 checksum: [ 28 "sha256=216eb03fc9ba6b0034b26e4ccc20cb2d23e95ee44b1e365ee0b5dbd163d5113f" 29 "md5=bdade429cbb5150067407dccb353525e" 30 ] 31}