10 buildDunePackage rec {
14 minimalOCamlVersion = "4.08";
17 url = "https://github.com/c-cube/iter/releases/download/v${version}/iter-${version}.tbz";
18 hash = "sha256-+HOcoFrpxLqKogwNQZfnRAnytlmhfxJzDUKvH9n0MCM=";
22 nativeCheckInputs = [ mdx.bin ];
29 homepage = "https://github.com/c-cube/sequence";
30 description = "Simple sequence (iterator) datatype and combinators";
32 Simple sequence datatype, intended to transfer a finite number of
33 elements from one data structure to another. Some transformations on sequences,
34 like `filter`, `map`, `take`, `drop` and `append` can be performed before the
35 sequence is iterated/folded on.
37 license = lib.licenses.bsd2;