this repo has no description
1opam-version: "2.0"
2maintainer: "simon.cruanes.2007@m4x.org"
3authors: "Simon Cruanes"
4homepage: "https://github.com/c-cube/olinq/"
5bug-reports: "https://github.com/c-cube/olinq/issues/"
6tags: ["linq" "query" "join" "group" "collection"]
7dev-repo: "git+https://github.com/c-cube/olinq.git"
8build: [
9 [make "build"]
10 [make "doc"] {with-doc}
11]
12install: [make "install"]
13remove: ["ocamlfind" "remove" "olinq"]
14depends: [
15 "ocaml" {>= "4.00.0" & < "5.0.0"}
16 "ocamlfind" {build}
17 "ocamlbuild" {build}
18 "base-bytes"
19]
20synopsis:
21 "powerful combinators for iteration, transformation and combination of collections"
22description: """
23The purpose is to provide powerful combinators to express iteration,
24transformation and combination of collections of items living in a type `'a t`,
25such as join, group_by, union, flat_map, etc. for in-memory processing."""
26flags: light-uninstall
27url {
28 src: "https://github.com/c-cube/olinq/archive/0.1.tar.gz"
29 checksum: [
30 "sha256=1e038eb5f5f8b9a4f96bd6a61ee18db3b8cadc2747a0f78a4a4875d467e99b9f"
31 "md5=17eafaf99d8dfca3db19e61d63e29906"
32 ]
33}