this repo has no description
1opam-version: "2.0" 2maintainer: "simon.cruanes@inria.fr" 3authors: "Simon Cruanes" 4homepage: "https://github.com/c-cube/iter/" 5build: make 6remove: [["ocamlfind" "remove" "sequence"]] 7depends: [ 8 "ocaml" {< "5.0.0"} 9 "ocamlfind" 10 "ocamlbuild" {build} 11] 12dev-repo: "git+https://github.com/c-cube/iter" 13install: [make "install"] 14synopsis: "Simple sequence abstract datatype." 15description: """ 16It is intented to transfer a finite number of elements from one data structure 17to another, perhaps with some intermediate transformations. It also provides a tiny 18library for S-expressions, convertible to streams of tokens, and conversely.""" 19flags: light-uninstall 20url { 21 src: "https://github.com/c-cube/iter/archive/0.2.tar.gz" 22 checksum: "sha256=a612283ab5dfedaa8469d5174a438e75398ac24262a9398fe6b4f00a0bbd602d" 23}