1{ lib
2, buildDunePackage
3, fetchurl
4, stdlib-shims
5}:
6
7buildDunePackage rec {
8 pname = "streaming";
9 version = "0.8.0";
10
11 minimalOCamlVersion = "4.08";
12
13 src = fetchurl {
14 url = "https://github.com/odis-labs/streaming/releases/download/${version}/streaming-${version}.tbz";
15 hash = "sha256-W+3GYZpsLj1SnQhuSmjXdi/85fMajWpz4b7x5W0bnJs=";
16 };
17
18 propagatedBuildInputs = [ stdlib-shims ];
19
20 meta = {
21 homepage = "https://odis-labs.github.io/streaming";
22 license = lib.licenses.isc;
23 description = "Fast, safe and composable streaming abstractions";
24 maintainers = [ lib.maintainers.vbgl ];
25 };
26}